:root {
  color-scheme: light;
  --surface-1:      #fcfcfb;
  --surface-2:      #f3f2ee;
  --sidebar-bg:     #fbfbfa;
  --page:           #f7f7f5;
  --text-primary:   #26241f;
  --text-secondary: #635f56;
  --text-muted:     #918c80;
  --gridline:       #e1e0d9;
  --baseline:       #c3c2b7;
  --border:         rgba(30,30,25,0.08);
  --border-strong:  rgba(30,30,25,0.13);

  --accent:      #b5732a;
  --accent-soft: #f3e3d0;

  --shadow-1: 0 1px 2px rgba(20,18,12,0.05);
  --shadow-2: 0 1px 2px rgba(20,18,12,0.04), 0 6px 16px -8px rgba(20,18,12,0.08);

  --series-1: #2a78d6;
  --series-2: #eb6834;
  --series-3: #1baf7a;
  --series-4: #eda100;

  --status-good:     #0ca30c;
  --status-warning:  #fab219;
  --status-serious:  #ec835a;
  --status-critical: #d03b3b;
}
@media (prefers-color-scheme: dark) {
  :root:where(:not([data-theme="light"])) {
    color-scheme: dark;
    --surface-1:      #1a1a19;
    --surface-2:      #1f1f1e;
    --sidebar-bg:     #141414;
    --page:           #0d0d0d;
    --text-primary:   #ffffff;
    --text-secondary: #c3c2b7;
    --text-muted:     #898781;
    --gridline:       #2c2c2a;
    --baseline:       #383835;
    --border: rgba(255,255,255,0.10);
    --border-strong: rgba(255,255,255,0.16);

    --accent:      #d69b5c;
    --accent-soft: #3a2f22;

    --shadow-1: 0 1px 2px rgba(0,0,0,0.3);
    --shadow-2: 0 1px 2px rgba(0,0,0,0.3), 0 6px 18px -8px rgba(0,0,0,0.5);

    --series-1: #3987e5;
    --series-2: #d95926;
    --series-3: #199e70;
    --series-4: #c98500;

    --status-good:     #0ca30c;
    --status-warning:  #fab219;
    --status-serious:  #ec835a;
    --status-critical: #e66767;
  }
}
:root[data-theme="dark"] {
  color-scheme: dark;
  --surface-1:      #1a1a19;
  --surface-2:      #1f1f1e;
  --sidebar-bg:     #141414;
  --page:           #0d0d0d;
  --text-primary:   #ffffff;
  --text-secondary: #c3c2b7;
  --text-muted:     #898781;
  --gridline:       #2c2c2a;
  --baseline:       #383835;
  --border: rgba(255,255,255,0.10);
  --border-strong: rgba(255,255,255,0.16);

  --accent:      #d69b5c;
  --accent-soft: #3a2f22;

  --shadow-1: 0 1px 2px rgba(0,0,0,0.3);
  --shadow-2: 0 1px 2px rgba(0,0,0,0.3), 0 6px 18px -8px rgba(0,0,0,0.5);

  --series-1: #3987e5;
  --series-2: #d95926;
  --series-3: #199e70;
  --series-4: #c98500;

  --status-good:     #0ca30c;
  --status-warning:  #fab219;
  --status-serious:  #ec835a;
  --status-critical: #e66767;
}
