HA Dashboard Design
Copy-paste-ready dashboard designs for Home Assistant. Pick a style, copy the blocks you need.
Prerequisites (install via HACS)
- card-mod - CSS styling for any card
- button-card - fully customizable button cards
- mini-graph-card - beautiful graphs (optional)
- mushroom - modern card suite (optional, used in some styles)
Available Styles
| Style |
Feel |
Best for |
glassmorphism |
Frosted glass, depth, blur |
Dark wallpaper backgrounds |
dark-minimal |
Pure black, clean typography |
Focus, productivity |
material-you |
Google Material 3, dynamic color |
Modern, familiar |
nordic |
Light, airy, Scandinavian |
Bright rooms, day use |
neon-cyberpunk |
Glow effects, vivid neon |
Night mode, wow factor |
warm-home |
Amber/orange, cozy |
Living rooms, evening |
soft-pastel |
Soft pinks, lilac, mint |
Friendly, family homes |
luxury-gold |
Deep navy + gold accents |
Premium, sophisticated |
retro-terminal |
Green phosphor, monospace |
Geek aesthetic |
How to Use
- Read the reference file for the chosen style
- Copy the Theme YAML → paste into
config/themes/your-style.yaml
- Copy the card-mod global styles → paste into your dashboard resources
- Copy individual card blocks → paste directly into your dashboard YAML
- Adjust entity IDs to match your setup
Quick Start - Any Style
# configuration.yaml - enable themes folder
frontend:
themes: !include_dir_merge_named themes/
# Activate theme in dashboard
theme: your-theme-name
Image Generation
To generate background images or dashboard mockup visualizations matching any style,
read references/image-prompts.md - contains ready-to-paste prompts for Midjourney,
DALL-E 3, Stable Diffusion, and Flux for every style.
Reference Files
Read only the file for the requested style:
references/glassmorphism.md
references/dark-minimal.md
references/material-you.md
references/nordic.md
references/neon-cyberpunk.md
references/warm-home.md
references/soft-pastel.md
references/luxury-gold.md
references/retro-terminal.md
references/image-prompts.md - image generation prompts for backgrounds and mockups
Card Types Covered in Every Style
Each reference file contains copy-paste blocks for:
- Sensor display - temperature, humidity, power readings
- Media player - Spotify, TV, speaker controls
- Climate / thermostat - temperature control with visual feedback
- Security / alarm - arm/disarm, door/window sensors
- Camera - live feed with overlay
- Button grid - scene/light/device shortcuts
- Weather - current + forecast display
- Energy - power consumption, solar, grid
- Light control - on/off, brightness, color temp slider
- Presence - person/device tracker cards
- Calendar / agenda - upcoming events
- Statistics / graphs - sensor history, mini-graph
- Header / navigation - page title, room nav
- Alert banners - notifications, warnings, status
Dashboard Types
Always default to masonry - it works in all HA versions and requires no setup.
# Safe default - works everywhere
views:
- title: Home
type: masonry # ← default, always works
cards:
- ...
type: sections (HA 2024.6+ grid layout) can give a blank page if the user's HA version
doesn't support it or if the view structure is wrong. Only suggest it if the user explicitly
asks for it or confirms they're on HA 2024.6+.
Pre-Output Checklist
Integration
Pairs with:
ha-yaml skill - for automations that respond to dashboard interactions
api-catalog skill - for sensor data displayed on the dashboard
1---2name: ha-dashboard-design3description: Beautiful, copy-paste-ready Home Assistant dashboard designs with complete CSS themes, card-mod styles, and button-card templates. Nine distinct visual styles: Glassmorphism, Dark Minimal, Material You, Nordic, Neon/Cyberpunk, Warm Home, Soft Pastel, Luxury Gold, and Retro Terminal. Use this skill whenever the user wants to make their dashboard look good, asks about card styling, CSS for Home Assistant, card-mod, button-card templates, Lovelace themes, dashboard aesthetics, or wants a specific visual style - even if they don't use the words "design" or "CSS".4---56# HA Dashboard Design78Copy-paste-ready dashboard designs for Home Assistant. Pick a style, copy the blocks you need.910## Prerequisites (install via HACS)1112- **card-mod** - CSS styling for any card13- **button-card** - fully customizable button cards14- **mini-graph-card** - beautiful graphs (optional)15- **mushroom** - modern card suite (optional, used in some styles)1617## Available Styles1819| Style | Feel | Best for |20|-------|------|----------|21| `glassmorphism` | Frosted glass, depth, blur | Dark wallpaper backgrounds |22| `dark-minimal` | Pure black, clean typography | Focus, productivity |23| `material-you` | Google Material 3, dynamic color | Modern, familiar |24| `nordic` | Light, airy, Scandinavian | Bright rooms, day use |25| `neon-cyberpunk` | Glow effects, vivid neon | Night mode, wow factor |26| `warm-home` | Amber/orange, cozy | Living rooms, evening |27| `soft-pastel` | Soft pinks, lilac, mint | Friendly, family homes |28| `luxury-gold` | Deep navy + gold accents | Premium, sophisticated |29| `retro-terminal` | Green phosphor, monospace | Geek aesthetic |3031## How to Use32331. Read the reference file for the chosen style342. Copy the **Theme YAML** → paste into `config/themes/your-style.yaml`353. Copy the **card-mod global styles** → paste into your dashboard resources364. Copy individual **card blocks** → paste directly into your dashboard YAML375. Adjust entity IDs to match your setup3839## Quick Start - Any Style4041```yaml42# configuration.yaml - enable themes folder43frontend:44 themes: !include_dir_merge_named themes/45```4647```yaml48# Activate theme in dashboard49theme: your-theme-name50```5152## Image Generation5354To generate background images or dashboard mockup visualizations matching any style,55read `references/image-prompts.md` - contains ready-to-paste prompts for Midjourney,56DALL-E 3, Stable Diffusion, and Flux for every style.5758## Reference Files5960Read only the file for the requested style:6162- `references/glassmorphism.md`63- `references/dark-minimal.md`64- `references/material-you.md`65- `references/nordic.md`66- `references/neon-cyberpunk.md`67- `references/warm-home.md`68- `references/soft-pastel.md`69- `references/luxury-gold.md`70- `references/retro-terminal.md`71- `references/image-prompts.md` - image generation prompts for backgrounds and mockups7273## Card Types Covered in Every Style7475Each reference file contains copy-paste blocks for:7677- **Sensor display** - temperature, humidity, power readings78- **Media player** - Spotify, TV, speaker controls79- **Climate / thermostat** - temperature control with visual feedback80- **Security / alarm** - arm/disarm, door/window sensors81- **Camera** - live feed with overlay82- **Button grid** - scene/light/device shortcuts83- **Weather** - current + forecast display84- **Energy** - power consumption, solar, grid85- **Light control** - on/off, brightness, color temp slider86- **Presence** - person/device tracker cards87- **Calendar / agenda** - upcoming events88- **Statistics / graphs** - sensor history, mini-graph89- **Header / navigation** - page title, room nav90- **Alert banners** - notifications, warnings, status9192## Dashboard Types9394**Always default to `masonry`** - it works in all HA versions and requires no setup.9596```yaml97# Safe default - works everywhere98views:99 - title: Home100 type: masonry # ← default, always works101 cards:102 - ...103```104105`type: sections` (HA 2024.6+ grid layout) can give a blank page if the user's HA version106doesn't support it or if the view structure is wrong. Only suggest it if the user explicitly107asks for it or confirms they're on HA 2024.6+.108109## Pre-Output Checklist110111- [ ] Dashboard uses `type: masonry` unless user specifically asked for Sections112- [ ] Theme YAML included with correct filename113- [ ] card-mod styles wrapped in correct YAML structure114- [ ] All entity IDs marked as placeholders (e.g., `sensor.YOUR_TEMPERATURE`)115- [ ] HACS dependencies listed at top of output116- [ ] Credentials/secrets not hardcoded117118## Integration119120**Pairs with:**121- `ha-yaml` skill - for automations that respond to dashboard interactions122- `api-catalog` skill - for sensor data displayed on the dashboard