matrix.css raw

   1  .theme-matrix {
   2    /* Logo colors */
   3    --logo-ink: #cfffc4;
   4    --logo-accent: #cfffc4;
   5  
   6    /* App colors */
   7    --background: oklch(0.08 0.03 140); /* deep black-green */
   8    --foreground: oklch(0.9 0.2 140); /* bright green text */
   9    --card: oklch(0.1 0.03 140);
  10    --card-foreground: oklch(0.9 0.2 140);
  11    --popover: oklch(0.12 0.03 140);
  12    --popover-foreground: oklch(0.9 0.2 140);
  13    --primary: oklch(0.8 0.28 140); /* glowing green */
  14    --primary-foreground: oklch(0.08 0.02 140);
  15    --secondary: oklch(0.15 0.04 140);
  16    --secondary-foreground: oklch(0.85 0.15 140);
  17    --muted: oklch(0.15 0.04 140);
  18    --muted-foreground: oklch(0.6 0.1 140);
  19    --accent: oklch(0.65 0.25 140);
  20    --accent-foreground: oklch(0.08 0.02 140);
  21    --destructive: oklch(0.55 0.25 25);
  22    --border: oklch(21.45% 0.0672 138.713);
  23    --input: oklch(0.15 0.03 140);
  24    --ring: var(--primary);
  25    --chart-1: oklch(0.8 0.28 140);
  26    --chart-2: oklch(0.7 0.26 160);
  27    --chart-3: oklch(0.6 0.22 120);
  28    --chart-4: oklch(0.85 0.3 140);
  29    --chart-5: oklch(0.45 0.18 140);
  30    --sidebar: oklch(0.07 0.02 140);
  31    --sidebar-foreground: oklch(0.9 0.2 140);
  32    --sidebar-primary: oklch(0.8 0.28 140);
  33    --sidebar-primary-foreground: oklch(0.08 0.02 140);
  34    --sidebar-accent: oklch(0.15 0.04 140);
  35    --sidebar-accent-foreground: oklch(0.85 0.15 140);
  36    --sidebar-border: oklch(0.18 0.04 140);
  37    --sidebar-ring: var(--primary);
  38  
  39    /* Custom colors */
  40    --positive: oklch(0.15 0.04 140);
  41    --positive-foreground: oklch(0.8 0.28 140);
  42    --warning: oklch(0.12 0.03 95);
  43    --warning-foreground: oklch(0.85 0.25 95);
  44  }
  45