themeProperty
Initially bound to Application.defaultThemeProperty, whose value is Tantalum.theme.
It extends CustomisableTheme, and therefore you can change the appearance by simply changing any of its properties. e.g. To change the accent color :
DefaultTheme.accentColor = RED
Content copied to clipboard
This will cause the theme to be regenerated, and applied to all scenes that bind to it.
If you wish to change the theme to something else for all scenes, then change Application.defaultTheme.
If you wish to change the theme for one scene only, then :
myScene.themeProperty.unbind()
myScene.theme = mySpecialTheme
Content copied to clipboard