LightForegroundColor property

Screen.LightForegroundColor — Color

The light foreground color, which is used to paint text and icons on a dark background.

The light foreground color is a base color, which other colors may copy or remix. If not set, it inherits the light foreground color from the preceding screen. If there is no color to inherit, a default color is used, taken from 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 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 light foreground color to white.

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

Sets the light foreground 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 light foreground color to white. The COLOR function recognizes a variety of formats, including the hex notation also used with CSS (Cascading Style Sheets).