Theme bug in ver 3.0.0 RTM1

Product: PowerShell Universal
Version: 3.0.0 RTM1

I have applied a Theme to my dashboard, it worked perfectly in ver 2.x. Now in ver 3.0.0 RTM1 the background color is white in the area that was outside the browser window when initially opened.

See screenshot of the problem when scrolling down.

I have tried with Google Chrome and Firefox, same behavior.

1 Like

@ClausRN - Is there any way you can share your theme hashtable?

Sure, no problem. It is pretty simple

$Theme = @{
    palette = @{
        primary = @{
            main = '#673ab7'
        }
        background = @{
            default = '#ede7f6'
            paper = '#ede7f6'
        }
    }
}