AugmentClaude

HA Dashboard Design

Get nine pre-built Home Assistant dashboard styles with ready-to-copy CSS and templates.

Installation

  1. Make sure Claude is on your device and in your terminal.

    Skills load from ~/.claude/skills/ when Claude Code starts up — so you need it on your machine first. If you don't have it yet, install it once with the command below, then run claude in any terminal to verify.

    One-time setup
    npm i -g @anthropic-ai/claude-code

    Already have it? Skip ahead.

  2. Paste into Claude Code or into your terminal.

    This copies the whole skill folder into ~/.claude/skills/ha-dashboard-design-tonylofgren/ — the SKILL.md plus any scripts, reference docs, or templates the skill ships with. Safe default: works for every skill.

    Faster alternative (instruction-only skills)

    Skips the clone and grabs only the SKILL.md file. Don't use this if the skill ships Python scripts, reference markdowns, or asset templates — they won't be downloaded and the skill will fail when it tries to load them.

    Quick install (SKILL.md only)
    Sign up to copy
  3. Restart Claude Code.

    Quit and reopen Claude Code (or any other agent that loads from ~/.claude/skills/). New skills are picked up on startup.

  4. Just ask Claude.

    Skills auto-activate when your request matches the skill's description — no slash command needed. Trigger phrases live in the skill's own frontmatter; you can read them in the “What this skill does” section above.

Prefer to read the source first? Open on GitHub.

When Claude uses it

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".

What this skill does

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

StyleFeelBest for
glassmorphismFrosted glass, depth, blurDark wallpaper backgrounds
dark-minimalPure black, clean typographyFocus, productivity
material-youGoogle Material 3, dynamic colorModern, familiar
nordicLight, airy, ScandinavianBright rooms, day use
neon-cyberpunkGlow effects, vivid neonNight mode, wow factor
warm-homeAmber/orange, cozyLiving rooms, evening
soft-pastelSoft pinks, lilac, mintFriendly, family homes
luxury-goldDeep navy + gold accentsPremium, sophisticated
retro-terminalGreen phosphor, monospaceGeek aesthetic

How to Use

  1. Read the reference file for the chosen style
  2. Copy the Theme YAML → paste into config/themes/your-style.yaml
  3. Copy the card-mod global styles → paste into your dashboard resources
  4. Copy individual card blocks → paste directly into your dashboard YAML
  5. 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

  • Dashboard uses type: masonry unless user specifically asked for Sections
  • Theme YAML included with correct filename
  • card-mod styles wrapped in correct YAML structure
  • All entity IDs marked as placeholders (e.g., sensor.YOUR_TEMPERATURE)
  • HACS dependencies listed at top of output
  • Credentials/secrets not hardcoded

Integration

Pairs with:

  • ha-yaml skill - for automations that respond to dashboard interactions
  • api-catalog skill - for sensor data displayed on the dashboard

Related skills