Skip to main content

Theme

Astro supports a light theme along with the original, default dark theme.

Example of a light theme Astro application.
Example of a light theme Astro application.

By convention, the Global Status Bar and its enclosed elements will always use the dark theme styling.

When to Use Light vs Dark

It is important to determine the users’ environment and select the appropriate theme. In low-light operating environments where users’ pupils expand to allow more light to enter the cornea, a light-themed UI can be glaring and cause eye strain. Conversely, in a bright operating environment where the pupil contracts, letting less light in, dark-themed UIs can lose distinction and readability.

Light Theme Use Cases

Dark Theme Use Cases

The Global Status Bar is always rendered with the dark theme, as is any element contained within it.
The Global Status Bar is always rendered with the dark theme, as is any element contained within it.

Mixed Use

Individual sections or components can override their inherited theme on a case-by-case basis, enabling the render of an element with a light theme in an predominantly dark-themed interface and vice versa. Examples:

Example of a predominantly dark theme interface with the modal window rendered using the light theme to place greater emphasis on an interaction demanding the user’s attention.
Example of a predominantly dark theme interface with the modal window rendered using the light theme to place greater emphasis on an interaction demanding the user’s attention.

Future Considerations

While not enabled by default at this time, light and dark themes can be swapped at runtime. For situations where lighting conditions can vary considerably, consider enabling runtime theme switching. A user-definable switch in the application settings, an ambient light sensor, or respecting OS level dark/light theme settings are all viable options.

Implementation

When using the Astro Web Components, Astro applications will default to the dark theme with no additional involvement by the developer. To enable the light theme, the <body> element of the application should be given a light-theme class (e.g., <body class=“light-theme”>. For all other applications, refer to our Design Tokens.

Feedback

Help us improve Astro

Please rate your present experience with Astro:

Cancel