From 1dfa9a62a282f2150482e9fc1eb5de2cb321ee00 Mon Sep 17 00:00:00 2001 From: Ilia Mashkov Date: Mon, 11 May 2026 11:11:29 +0300 Subject: [PATCH] design: update color palette from ochre-clay to white/blue scheme --- src/shared/styles/theme.css | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/src/shared/styles/theme.css b/src/shared/styles/theme.css index beeb111..7a61a82 100644 --- a/src/shared/styles/theme.css +++ b/src/shared/styles/theme.css @@ -29,27 +29,27 @@ --fraunces-soft: 0; /* === COLOR PALETTE === */ - --ochre-clay: #d9b48f; - --slate-indigo: #3b4a59; - --burnt-oxide: #a64b35; + --vibrant-blue: #041cf3; + --paper-white: #ffffff; --carbon-black: #121212; + --structure-gray: #f2f2f2; /* === SEMANTIC COLORS === */ - --background: var(--ochre-clay); + --background: var(--paper-white); --foreground: var(--carbon-black); - --card: var(--ochre-clay); + --card: var(--paper-white); --card-foreground: var(--carbon-black); - --primary: var(--burnt-oxide); - --primary-foreground: var(--ochre-clay); - --secondary: var(--slate-indigo); - --secondary-foreground: var(--ochre-clay); - --muted: var(--slate-indigo); - --muted-foreground: var(--ochre-clay); - --accent: var(--burnt-oxide); - --accent-foreground: var(--ochre-clay); + --primary: var(--vibrant-blue); + --primary-foreground: var(--paper-white); + --secondary: var(--structure-gray); + --secondary-foreground: var(--carbon-black); + --muted: var(--structure-gray); + --muted-foreground: #666666; + --accent: var(--vibrant-blue); + --accent-foreground: var(--paper-white); --destructive: #d4183d; --border: var(--carbon-black); - --ring: var(--carbon-black); + --ring: var(--vibrant-blue); /* === SPACING (8pt Linear Scale) === */ --space-0: 0;