From 0bc47e60a58c369e3c87141c0adff3404ab47c8c Mon Sep 17 00:00:00 2001 From: Rob Colbert Date: Tue, 28 Apr 2026 17:27:39 -0400 Subject: [PATCH] Fix: Darken border colors to match dark industrial theme - border-default: #27272a (was #2a2a2a) - border-highlight: #2a2a2a (was #3a3a3a) Previous bright borders (~#d4d4d4) are now neutral dark grays. --- gadget-code/frontend/src/index.css | 4 ++-- gadget-code/frontend/tailwind.config.js | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/gadget-code/frontend/src/index.css b/gadget-code/frontend/src/index.css index c5923bb..9ed129c 100644 --- a/gadget-code/frontend/src/index.css +++ b/gadget-code/frontend/src/index.css @@ -10,8 +10,8 @@ --color-text-secondary: #a3a3a3; --color-text-muted: #737373; --color-border-subtle: #1a1a1a; - --color-border-default: #2a2a2a; - --color-border-highlight: #3a3a3a; + --color-border-default: #27272a; + --color-border-highlight: #2a2a2a; } * { diff --git a/gadget-code/frontend/tailwind.config.js b/gadget-code/frontend/tailwind.config.js index f12581b..2d57632 100644 --- a/gadget-code/frontend/tailwind.config.js +++ b/gadget-code/frontend/tailwind.config.js @@ -14,8 +14,8 @@ export default { 'text-secondary': '#a3a3a3', 'text-muted': '#737373', 'border-subtle': '#1a1a1a', - 'border-default': '#2a2a2a', - 'border-highlight': '#3a3a3a', + 'border-default': '#27272a', + 'border-highlight': '#2a2a2a', }, fontFamily: { mono: ['Courier New', 'Courier', 'monospace'],