Universal UD V3 Themes (link color)

Product: PowerShell Universal
Version: 1.5.9
UD v3

Has anyone done much work with custom themes in V3? I have to say I’m struggling a little.
Currently I have the following ‘theme’ configured in my dashboard.ps1:

$Theme = @{
    light = @{
        palette = @{
            primary = @{
                main = "#fff"
            }
            background = @{
                default = '#f0f2f4'
                paper = '#fff'
            }
            text = @{
                primary = '#202020'
                secondary = '#737373'
                disabled = '#9b9b9b'
            }
            action = @{
                active = '#26bd55'
                hover = '#f0f0f0'
                selected = '#e6e6e6'
                disabled = '#b9b9b9'
                disabledBackground = '#dcdcdc'
            }
        }
    }

    dark = @{
        palette = @{
            primary = @{
                main = "#333"
            }
            background = @{
                default = '#474747'
                paper = '#424242'
            }
            text = @{
                primary = '#fff'
                secondary = '#c1c1c1' 
                disabled = '#989898' 
            }
            action = @{
                active = '#26bd55'
                hover = '#404040'
                selected = '#515151'
                disabled = '#6f6f6f'
                disabledBackground = '#494949'
            }
        }
    }
}

Only problem is when I use new-udlink anywhere, the text blends in because its also white like the background.
Now I’ve looked at Universal/UD docs, and also material-UI docs and I’m struggling to get my head around the link color… tried adding a link = @{ primary = “#hexcode” } etc into the above code, but no joy. Anyone had any luck in doing this or have any more comprehensive examples of a theme?

Don’t suppose you know how to change the colour of text within “New-UDTypography” using this V3 theme?
Struggling here too

I realized there is actually a ‘-style’ param on new-udlink (same with new-udtypography) which its possible I can do what I need that way, although it would be good to have a blanket setting in the theme for these. I just think my whole understanding of material-ui is lacking maybe, I need to just sit down and work through the official docs.

Yeah I’m having trouble changing the colour of my typography when switching between light and dark themes… so at the minute all my text is black, which doesn’t work so well when the dark theme is selected, as you could imagine.

I must admit the documentation seems very minimal around Material UI theme.