LCARdS Theme Profiles for HA-LCARS
LCARdS ships a set of ready-made theme profiles designed to be used alongside the HA-LCARS community theme.
- Uses the LCARdS colour palette (
--lcards-*variables) that are provided automatically by the integration. - The HA core colour tokens (
--ha-color-*) which are used by stock Home Assistant components are remapped to LCARdS palette entries. This helps bring more theme consistency across across the UI. - All variables are assigned dynamic HA-LCARS/LCARdS palette references, meaning alert-mode hue rotations and light/dark mode switches propagate automatically.
Prerequisites
You need HA-LCARS installed before applying these profiles. Follow the installation guide on the HA-LCARS repository first.
Profile YAML
Download or copy from the file below and paste at the end of your themes.yaml:
Available Profiles
| Profile name | Accent colour | Notes |
|---|---|---|
LCARS Picard [LCARdS Red Accent] | Orange/Red (--lcards-orange-*) | Primary accent mapped to the LCARdS orange family |
LCARS Picard [LCARdS Blue Accent] | Blue (--lcards-blue-*) | Primary accent mapped to the LCARdS blue family |
Both profiles include independent light and dark mode sections and cover the full 11-shade HA core colour token range.
Installation
The profiles are appended to the end of your existing HA-LCARS themes.yaml file. This is the standard HA-LCARS extension pattern — no existing theme entries are modified.
- Open your HA-LCARS
themes.yamlfile (typicallyconfig/themes/ha-lcars/themes.yaml). - Scroll to the very end of the file.
- Copy the entire contents of the profile YAML file linked below and paste it after the last line.
- Reload themes in Home Assistant: Developer Tools → YAML → Reload Themes, or call the
frontend.reload_themesservice. - Select the profile in Profile → Theme in the HA frontend.
Anchor dependencies
The profiles use YAML anchors (<<: *lcars-variables, <<: *base, <<: *card-mod-css) that are defined in the main HA-LCARS file. They must be appended to the same file — they cannot be used as standalone theme files.
How the Colour Mapping Works
HA Core Colour Tokens
Home Assistant's frontend exposes an 11-shade scale (05 → 95) for five colour families: primary, neutral, orange, red, and green. These are consumed by stock HA components. The profiles map each HA shade to the nearest stop on the LCARdS 7-stop palette scale.
The family mapping differs per profile accent:
| HA family | Red Accent profile | Blue Accent profile |
|---|---|---|
primary | --lcards-orange-* | --lcards-blue-* |
neutral | --lcards-gray-* | --lcards-gray-* |
orange | --lcards-yellow-* | --lcards-yellow-* |
red | --lcards-orange-* | --lcards-orange-* |
green | --lcards-green-* | --lcards-green-* |