Changes the background color of the app.
app.SetBackColor(
color )
Example - Blue Background
function OnStart()
{
app.SetBackColor( "blue" );
}
from native import app
def OnStart():
app.SetBackColor("blue")
String:
hexadecimal: “#rrggbb”, “#aarrggbb”
colourName: “red”, “green”, ...