style(ext/vault): add patina palette tokens
Mirrors popup/styles.css token block so the two surfaces share a consistent color vocabulary.
This commit is contained in:
@@ -1,22 +1,35 @@
|
|||||||
/* Relicario vault — terminal dark theme (tab layout) */
|
/* Relicario vault — terminal dark theme (tab layout) */
|
||||||
|
|
||||||
:root {
|
:root {
|
||||||
/* Brand */
|
/* Patina gold (Phase 2B) */
|
||||||
--accent: #d2ab43;
|
--gold-base: #a88a4a;
|
||||||
--accent-soft: rgba(210, 171, 67, 0.18);
|
--gold-mid: #cdb47a;
|
||||||
--accent-strong: #aa812a;
|
--gold-shadow: #5a3f12;
|
||||||
|
--gold-text: #c9a868;
|
||||||
|
--gold-soft: rgba(184, 149, 86, 0.14);
|
||||||
|
--gold-ring: rgba(184, 149, 86, 0.18);
|
||||||
|
--gold-stroke: #b89556;
|
||||||
|
--gold-hi-end: #dac8a0;
|
||||||
|
|
||||||
|
/* Brand alias (kept for backwards compatibility) */
|
||||||
|
--accent: var(--gold-base);
|
||||||
|
--accent-soft: var(--gold-soft);
|
||||||
|
--accent-strong: var(--gold-shadow);
|
||||||
|
|
||||||
/* Surfaces */
|
/* Surfaces */
|
||||||
--bg-page: #0d1117;
|
--bg-page: #0a0e14;
|
||||||
--bg-pane: #161b22;
|
--bg-pane: #11161e;
|
||||||
--bg-elevated: #21262d;
|
--bg-elevated: #1c2330;
|
||||||
--bg-input: #161b22;
|
--bg-card: rgba(22, 27, 34, 0.55);
|
||||||
--border-subtle: #30363d;
|
--bg-input: #0a0e14;
|
||||||
|
--border-soft: rgba(255, 255, 255, 0.05);
|
||||||
|
--border-mid: #262d36;
|
||||||
|
--border-subtle: var(--border-mid);
|
||||||
|
|
||||||
/* Text */
|
/* Text */
|
||||||
--text: #c9d1d9;
|
--text: #c9d1d9;
|
||||||
--text-muted: #8b949e;
|
--text-muted: #8b949e;
|
||||||
--text-dim: #484f58;
|
--text-dim: #6b7888;
|
||||||
|
|
||||||
/* Status */
|
/* Status */
|
||||||
--danger: #ab2b20;
|
--danger: #ab2b20;
|
||||||
@@ -24,7 +37,7 @@
|
|||||||
--success: #6cb37a;
|
--success: #6cb37a;
|
||||||
|
|
||||||
/* Focus */
|
/* Focus */
|
||||||
--focus-ring: 0 0 0 2px rgba(210, 171, 67, 0.35);
|
--focus-ring: 0 0 0 2px var(--gold-ring);
|
||||||
}
|
}
|
||||||
|
|
||||||
* {
|
* {
|
||||||
@@ -34,7 +47,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
background: #0d1117;
|
background: var(--bg-page);
|
||||||
color: #c9d1d9;
|
color: #c9d1d9;
|
||||||
font-family: 'JetBrains Mono', 'Cascadia Code', 'Fira Code', 'SF Mono', Menlo, monospace;
|
font-family: 'JetBrains Mono', 'Cascadia Code', 'Fira Code', 'SF Mono', Menlo, monospace;
|
||||||
font-size: 13px;
|
font-size: 13px;
|
||||||
@@ -62,7 +75,7 @@ body {
|
|||||||
.brand {
|
.brand {
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
color: #d2ab43;
|
color: var(--gold-text);
|
||||||
letter-spacing: 1px;
|
letter-spacing: 1px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user