/* Base: design tokens, reset, and global typography. */

:root {
    --bg: #0d1117;
    --frame-bg: #090b10;
    --window-bg: #11151c;
    --fg: #c9d1d9;
    --dim: #8b949e;
    --modeline-bg: #d5dbe3;
    --modeline-fg: #101216;
    --menubar-bg: #161b22;
    --accent: #FFA500;
    --highlight: rgba(255, 165, 0, 0.02);
    --border: #30363d;
}

* { box-sizing: border-box; }

html, body { height: 100%; margin: 0; }

body {
    font-family: "JetBrains Mono", "Fira Code", ui-monospace, Menlo, Consolas,
                 "DejaVu Sans Mono", monospace;
    background: var(--frame-bg);
    color: var(--fg);
    font-size: 15px;
    line-height: 1.55;
}
