fix(frontend): var-derive hardcoded palette colours for theme-swap safety
Replace ~92 hardcoded Catppuccin rgba literals across the dashboard, agent, and shared terminal stylesheets with color-mix() over the theme :root vars, so a stylix-generated theme.css recolours the whole UI, not just the elements that already referenced the vars. Pixel-identical under the default palette (same RGB + alpha; color-mix(in srgb, C N%, transparent) == rgba(C, N/100)). Also fixes four var(--mauve, #cba6f7) usages: --mauve is undefined (the var is --purple), so they were silently falling back to the hardcoded hex and would not have recoloured on a theme swap. The bare crust hex in terminal.css and the checkerboard-gradient hexes in common.css are var-derived too. Pure black/white drop-shadow/frost scrims are left as literals (not theme colours). Two off-palette surface tints (dim-purple schedule rows, warm-amber inline-button hover) are also left, with a comment, pending a dedicated named var. Correct-var fallbacks like var(--red, #f38ba8) are left as-is since they already recolour via the var.
This commit is contained in:
parent
4e0f2ac9ca
commit
742d4a5c6d
6 changed files with 112 additions and 107 deletions
|
|
@ -36,7 +36,7 @@ body.home-shell {
|
|||
padding: 1.1em 1.2em;
|
||||
border: 1px solid var(--purple-dim);
|
||||
border-radius: 6px;
|
||||
background: rgba(24, 24, 37, 0.55);
|
||||
background: color-mix(in srgb, var(--bg-elev) 55%, transparent);
|
||||
text-decoration: none;
|
||||
color: var(--fg);
|
||||
transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease,
|
||||
|
|
@ -44,8 +44,8 @@ body.home-shell {
|
|||
}
|
||||
.home-tile:hover {
|
||||
border-color: var(--purple);
|
||||
background: rgba(203, 166, 247, 0.06);
|
||||
box-shadow: 0 -2px 14px -6px rgba(203, 166, 247, 0.5);
|
||||
background: color-mix(in srgb, var(--purple) 6%, transparent);
|
||||
box-shadow: 0 -2px 14px -6px color-mix(in srgb, var(--purple) 50%, transparent);
|
||||
}
|
||||
|
||||
.home-tile-label {
|
||||
|
|
|
|||
Loading…
Reference in a new issue