From ec4a14976dd257c25add0edb4bac149fc2b1d2c0 Mon Sep 17 00:00:00 2001 From: dtoro Date: Wed, 8 Apr 2026 21:30:46 +0200 Subject: [PATCH] style: switch primary accent from teal to deep royal blue MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Replace #4f98a3 (desaturated teal) with #3b6ed8 (deep royal blue) as the app's primary accent. Affects every text-primary, bg-primary, ring-primary, border-primary class — selection rings, active sidebar rows, the active filter pill background, the loupe info button when open, etc. Co-Authored-By: Claude Opus 4.6 (1M context) --- frontend/src/index.css | 2 +- frontend/tailwind.config.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/index.css b/frontend/src/index.css index 278c6b3..4f65075 100644 --- a/frontend/src/index.css +++ b/frontend/src/index.css @@ -12,7 +12,7 @@ --color-text: #e8e6e0; --color-text-muted: #878580; --color-text-faint: #4a4845; - --color-primary: #4f98a3; + --color-primary: #3b6ed8; --color-pick: #4f9e5c; --color-reject: #c25a5a; --color-star: #d4a340; diff --git a/frontend/tailwind.config.js b/frontend/tailwind.config.js index e04efaf..6b88762 100644 --- a/frontend/tailwind.config.js +++ b/frontend/tailwind.config.js @@ -17,7 +17,7 @@ export default { text: '#e8e6e0', 'text-muted': '#878580', 'text-faint': '#4a4845', - primary: '#4f98a3', // desaturated teal + primary: '#3b6ed8', // deep royal blue pick: '#4f9e5c', // green for picked reject: '#c25a5a', // red for rejected star: '#d4a340', // amber for stars