BackgroundColor property

TextScreen.BackgroundColor — Color

The background color, which is used to paint the areas behind items such as fields, buttons and navigators. Another distinct color, the backdrop color, may be used to paint the app background, which is set at a plane below the backgrounds for fields, buttons and navigators.

The background color is a base color, which other colors may copy or remix. If not set, it inherits the background color from the preceding screen. If there is no color to inherit, a default color is used, set through the color theme chosen for the app.

You can completely change the color appearance of an app just by setting the primary color, the accent color and the background color. All other colors, if not set explicitly, are based on these base colors. The light foreground color, the dark foreground color and the warning color are also base colors, but rarely need to be changed.

Refer to the examples for the BackgroundColor property of form screens for more information on how to set this property dynamically, enabling it to change with values entered by your users.

Consult our reference material on colors to learn more.

Examples

Color.WhiteColor,White

Sets the background color to white.

COLOR("white")COLOR("white")

Sets the background color to white. The COLOR function can return the same colors as those that can be accessed by writing Color.Color,, followed by the color name. However, any typos in the text string given to COLOR are only flagged as erroneous once your app is run, as opposed to writing Color.Color,, followed by the color name, in which case error are flagged immediately.

COLOR("#fff")COLOR("#fff")

Sets the background color to white. The COLOR function recognizes a variety of formats, including the hex notation also used with CSS (Cascading Style Sheets).