Skip to content

A word on compatibility

In general, compatibility should be 100%

Home Assistant has no idea that a Material 3 theme is used!

HAM3 integrates Material 3 color definitions with the Home Assistant theme definitions by mapping the Material 2 and Home Assistant CSS definitions to the Material 3 definitions.

Home Assistant's main UI and built-in cards

Since the introduction of light and dark theme modes, the Home Assistant UI takes full advantage of the theme definitions. Therefore, and because of the mapping of Material 3 definitions to Material 2 definitions, a HAM3-based theme should integrate seamlessly with the Home Assistant user interface, but with all the capabilities that HAM3 offers:

  • Seemless compatibility between HAM3 themes
  • Keeping readability between dark and light modes
  • The ability to create a theme from your favorite image

As with the main UI, the built-in cards should integrate seamlessly with any HAM3 Theme.

I did not test ALL the built-in cards, so there might still be some bugs present!

Custom Cards

Theme mode compatible custom cards

If the custom card is already fully compatible with dark and light theme modes, then, as with Home Assistant itself and the built-in cards, I wouldn't expect any problems with the HAM3 themes, unless the custom card requires its own dedicated theme.

Any other case...

If the custom card is not compatible with light and dark modes, it highly depends on what the custom card is using:

  • Its own CSS variables that you should adapt to light and dark modes
  • Fixed colors that won't adapt to light and dark modes

The last case is a difficult one, and can only be changed by the developer of the custom card. But if the card is using its own CSS variables, you can define a light and dark variant in the M3 theme.

Note on custom card styling

If you use a custom card to style the CSS of your card, it depends how the styling is done:

  • Your own CSS variables that you should adapt to light and dark modes
  • Fixed colors that won't adapt to light and dark modes

The problem is the same as above: you should use CSS variables, and define them in the light and dark modes of the theme.

Back to top