From e18cf7c7f28bdeac7c8bcb2d2963a88225c5eb93 Mon Sep 17 00:00:00 2001 From: kudindmitriy Date: Sun, 1 Feb 2026 23:45:26 +0200 Subject: [PATCH] Bob AI: make it light theme --- src/app/globals.css | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/globals.css b/src/app/globals.css index c7b0138..7b5ba70 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: #2c2c3e;; - --foreground: #ffffff;; + --background: #ffffff;; + --card: #f4f4f5;; + --foreground: #1a1a2e;; --primary-cta: #22c55e;; --secondary-cta: #8a6d5e;; --accent: #3b82f6;; - --background-accent: #26263a;; + --background-accent: #e0e7ff;; /* Base spacing units */ --vw-0_25: calc(var(--vw) * 0.25); --vw-0_5: calc(var(--vw) * 0.5);