From 470fb664a42f93702f37c30c9fa2b4e9a29d7533 Mon Sep 17 00:00:00 2001 From: kudindmitriy Date: Mon, 2 Feb 2026 10:28:42 +0200 Subject: [PATCH] Bob AI: make it light theme --- src/app/globals.css | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/app/globals.css b/src/app/globals.css index 0171e48..a815b36 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: #222238;; - --foreground: #ffffff;; + --background: #ffffff;; + --card: #f5f5f5;; + --foreground: #1a1a2e;; --primary-cta: #22c55e;; - --secondary-cta: #2a2a3b;; + --secondary-cta: #6b7280;; --accent: #3b82f6;; - --background-accent: #2a3664;; + --background-accent: #e0e7ff;; /* Base spacing units */ --vw-0_25: calc(var(--vw) * 0.25); --vw-0_5: calc(var(--vw) * 0.5);