From 347c93713bb92ff43cf514e2ab065ac4b18c811a Mon Sep 17 00:00:00 2001 From: Elijah Date: Sat, 27 Jun 2026 21:05:09 -0700 Subject: [PATCH] style: Adjust dark mode to standard greys while keeping teal accents --- src/app/globals.css | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/src/app/globals.css b/src/app/globals.css index 9bb6107..37efa07 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -30,25 +30,25 @@ } :root.dark { - --theme-bg-base: #0f1614; - --theme-bg-surface: #17221f; - --theme-bg-surface-alt: #1e2d28; - --theme-bg-callout: #1a332a; + --theme-bg-base: #121212; + --theme-bg-surface: #1e1e1e; + --theme-bg-surface-alt: #2d2d2d; + --theme-bg-callout: #1a2723; --theme-primary: #4ab2b2; --theme-primary-hover: #5ec7c7; --theme-primary-light: #6cd1d1; - --theme-text-heading: #e4f0ec; - --theme-text-body: #c3d9d3; - --theme-text-secondary: #9cb8b0; - --theme-text-muted: #6b8a81; - --theme-border: #38524a; - --theme-border-light: #253832; + --theme-text-heading: #f9fafb; + --theme-text-body: #e5e7eb; + --theme-text-secondary: #9ca3af; + --theme-text-muted: #6b7280; + --theme-border: #374151; + --theme-border-light: #2d3748; --theme-success: #4ade80; - --theme-success-bg: #143621; + --theme-success-bg: #064e3b; --theme-error: #f87171; - --theme-error-bg: #3b1c1c; - --theme-badge-bg: #214035; - --theme-badge-text: #6fd6b8; + --theme-error-bg: #7f1d1d; + --theme-badge-bg: #1f2937; + --theme-badge-text: #5ec7c7; --theme-danger: #ef4444; --theme-danger-hover: #f87171;