Bug in default theme for release Nightly build 20200106.4

There is a bug in the new fixes for today default theme

UDGrid                                 = @{
            BackgroundColor = $AlternativeBackgroundColor3
            FontColor       = $AlternativeBackgroundColor3
        }

should be 

UDGrid                                 = @{
            BackgroundColor = $AlternativeBackgroundColor3
            FontColor       = $PrimaryFontColor
        }

Wait, I’m not at my desk right now… but why would you want the background color and the font to be the same?

after testing the release the font has the same background color which make it looks like hidden in udgrid the only way to see it is by selecting the font. After further checking i found that it has been changed in today release so i have revert it back on my end to be able to see the text again in udgrid.

Wow. Good catch! Here’s the offending change: https://github.com/ironmansoftware/universal-dashboard/commit/95a88de6345caa0f0051b8ad6b21f96245fa3681#diff-6c3d8505978187ed6eca245026833390R69

PR to fix this: https://github.com/ironmansoftware/universal-dashboard/pull/1427

:man_facepalming: I totally misread that with tired eyes last night. I thought you were suggesting the opposite change.

Sorry about that was making changes to the default theme so i can learn the ThemeService.cs and forgot to reset to its default style :neutral_face: