From 2bfe6e206a0bc1292f4cb256f4b47923c7b30d31 Mon Sep 17 00:00:00 2001 From: kudindmitriy Date: Mon, 2 Feb 2026 09:59:31 +0200 Subject: [PATCH] Bob AI: make it light theme --- src/app/globals.css | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/app/globals.css b/src/app/globals.css index 7d59a28..5a28c36 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -4,13 +4,13 @@ /* Base units */ /* --vw is set by ThemeProvider */ - --background: #1a1a2e;; - --card: #12121e;; - --foreground: #ffffff;; + --background: #ffffff;; + --card: #f4f4f5;; + --foreground: #1a1a2e;; --primary-cta: #22c55e;; - --secondary-cta: #ffffff;; - --accent: #3b82f6;; - --background-accent: #2b2d42;; + --secondary-cta: #3b82f6;; + --accent: #22c55e;; + --background-accent: #e6fffa;; /* Base spacing units */ --vw-0_25: calc(var(--vw) * 0.25); --vw-0_5: calc(var(--vw) * 0.5);