/**
 * dataguru.one — Terminal Design System
 * Theme tokens (amber = dark default, paper = light)
 *
 * Usage: <html data-theme="amber"> or data-theme="paper"
 */

html[data-theme="amber"] {
    --bg: #0c0c0c;
    --bg-elevated: #141414;
    --bg-card: #111111;
    --border: #2a2826;
    --border-active: #d4a574;
    --text: #e8e4df;
    --text-muted: #7a756e;
    --accent: #d4a574;
    --accent-dim: rgba(212, 165, 116, 0.15);
    --accent-glow: rgba(212, 165, 116, 0.35);
    --success: #8fbc8f;
    --flow: #d4a574;
    --scanline: rgba(255, 255, 255, 0.015);

    --font-mono: 'IBM Plex Mono', ui-monospace, monospace;
    --font-sans: 'Inter', system-ui, sans-serif;
    --container-max: 1100px;
}

html[data-theme="paper"] {
    --bg: #f5f0e8;
    --bg-elevated: #ebe4d8;
    --bg-card: #faf7f2;
    --border: #c4b8a8;
    --border-active: #8b4513;
    --text: #1a1612;
    --text-muted: #6b5f52;
    --accent: #8b4513;
    --accent-dim: rgba(139, 69, 19, 0.08);
    --accent-glow: rgba(139, 69, 19, 0.2);
    --success: #2d6a2d;
    --flow: #8b4513;
    --scanline: rgba(0, 0, 0, 0.02);

    --font-mono: 'IBM Plex Mono', ui-monospace, monospace;
    --font-sans: 'Inter', system-ui, sans-serif;
    --container-max: 1100px;
}
