/* Razor design tokens — single source of truth.
 *
 * Previously each page (account/chart/index/demo) redefined this identical
 * :root block inline. It now lives here once and is loaded by every page, so
 * theming changes happen in one place. These custom properties inherit into
 * the light-DOM rz-* components (client/styles/components.css) automatically.
 */
:root {
    --bg: #28211c;
    --surface: #342b24;
    --border: #4d3d33;
    --text: #b2a69a;
    --muted: #6e6e6e;
    --green: #10d00d;
    --red: #da5538;
    --yellow: #b5bd68;
    --blue: #00aaff;
    --grid: rgba(77, 61, 51, 0.5);
}
