// Design tokens — Lumen Diagnósticos
// Warm, modern, acolhedor

const LUMEN_TOKENS = {
  light: {
    // Backgrounds — cool lavender-tinted off-whites
    bg: '#F3F0F7',         // canvas lavanda claríssimo
    surface: '#FFFFFF',     // cards
    surfaceAlt: '#F8F6FB', // subtle cards
    surfaceSunken: '#ECE7F2',

    // Text — soft violet-grey
    text: '#1F1B2E',       // quase-preto com tom violeta
    textMuted: '#6B6380',
    textSubtle: '#9B93AB',

    // Brand — lavanda principal
    accent: '#7C5CD3',     // lavanda saturada
    accentSoft: '#C8B8EC', // lavanda suave
    accentBg: '#EFE9FB',

    // Secondary — mauve (complementar)
    sage: '#9B7EC4',       // orquídea neutra
    sageBg: '#EDE5F5',

    // Status
    success: '#6B9A6B',
    warning: '#B88A2C',
    danger: '#B3466D',
    info: '#5D7FBE',

    // Lines
    border: 'rgba(31, 27, 46, 0.08)',
    borderStrong: 'rgba(31, 27, 46, 0.14)',

    // Fila virtual / dark hero
    queueBg: '#2A2342',
    queueText: '#F3F0F7',
  },
  dark: {
    bg: '#17142A',
    surface: '#221E3A',
    surfaceAlt: '#2A2544',
    surfaceSunken: '#100E20',

    text: '#ECE8F5',
    textMuted: '#AFA7C2',
    textSubtle: '#7B7395',

    accent: '#B49DE8',
    accentSoft: '#3D2F5E',
    accentBg: '#2F2549',

    sage: '#C9B7E4',
    sageBg: '#302744',

    success: '#9CBE9C',
    warning: '#D9B26A',
    danger: '#D6829D',
    info: '#9DB3D8',

    border: 'rgba(236, 232, 245, 0.08)',
    borderStrong: 'rgba(236, 232, 245, 0.14)',

    queueBg: '#0A0816',
    queueText: '#ECE8F5',
  },
};

// Type — Instrument Serif (títulos) + Geist (UI)
const LUMEN_FONTS = {
  serif: '"Geist", -apple-system, system-ui, sans-serif',
  sans: '"Geist", -apple-system, system-ui, sans-serif',
  mono: '"Geist Mono", ui-monospace, monospace',
};

window.LUMEN_TOKENS = LUMEN_TOKENS;
window.LUMEN_FONTS = LUMEN_FONTS;
