The following is an example of a script that changes the background color.
app = designer.GetApplication() # Change the top color of the background app.SetPreference(u"TopBackgroundColor", u"Black") # Change the bottom color of the background app.SetPreference(u"BottomBackgroundColor", u"Black") # Change the color of text app.SetPreference(u"TextColor", u"White")


