/* Carbon — professional dark grey, functional color only where it helps */
:root {
    /* surfaces: pure neutral grey, no blue/purple tint */
    --bg: #161616;
    --bg-surface: #1e1e1e;
    --bg-elevated: #282828;
    --bg-deep: #111111;
    --bg-deepest: #0c0c0c;
    /* text */
    --text: #cccccc;
    --text-dim: #808080;
    --text-on-color: #111111;
    --text-on-color-inv: #ffffff;
    /* semantic: muted but clearly distinguishable */
    --accent: #7aafff;
    --green: #5bb98c;
    --yellow: #cda244;
    --red: #c9514b;
    /* borders */
    --border: #2c2c2c;
    --border-deep: #232323;
    /* rgb channels */
    --accent-rgb: 122, 175, 255;
    --green-rgb: 91, 185, 140;
    --red-rgb: 201, 81, 75;
    --border-rgb: 44, 44, 44;
}
