From fa82216dfe1c126e25bd1ce9b9d15809cdfabbb2 Mon Sep 17 00:00:00 2001 From: Martin <2026226+martin-mfg@users.noreply.github.com> Date: Tue, 30 Jun 2026 09:04:48 +0200 Subject: [PATCH] fix primary color in step 4 (#317) --- apps/frontend/src/index.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/frontend/src/index.css b/apps/frontend/src/index.css index 1af8e11ccf3cb..54b223dd31bd0 100644 --- a/apps/frontend/src/index.css +++ b/apps/frontend/src/index.css @@ -11,17 +11,17 @@ Override background color in dark mode with GitHub's dark mode background color. */ @plugin "daisyui/theme" { name: "light"; + --color-primary: #2f80ed; --color-error: var(--color-red-700); } @plugin "daisyui/theme" { name: "dark"; + --color-primary: #2f80ed; --color-error: var(--color-red-900); --color-base-100: #0d1117; } :root { - --color-primary: #2f80ed; - /* Snappy duration for interactive elements (buttons, hovers). */ --transition-fast: 100ms; /* Slower, deliberate fade for large surfaces during a theme switch. */