From 82df6849bd696614493037971be52c56f98d9d95 Mon Sep 17 00:00:00 2001 From: juanatsap Date: Wed, 19 Nov 2025 15:30:39 +0000 Subject: [PATCH] fix: Make icon borders nearly invisible in dark theme - Changed --icon-border from #2a2a2a to #1e1e1e (rgb(30,30,30)) - Background is #1a1a1a (rgb(26,26,26)), only 4 RGB units difference - Borders now barely visible, creating cleaner dark theme appearance --- static/css/01-foundation/_themes.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/static/css/01-foundation/_themes.css b/static/css/01-foundation/_themes.css index 52916f0..037eccc 100644 --- a/static/css/01-foundation/_themes.css +++ b/static/css/01-foundation/_themes.css @@ -86,7 +86,7 @@ /* Borders & Dividers */ --border-color: #404040; --border-light: #333333; - --icon-border: #2a2a2a; /* Much darker, less visible border for icons */ + --icon-border: #1e1e1e; /* Nearly invisible border for icons in dark theme */ --item-separator: rgba(255, 255, 255, 0.05); /* Very subtle separator in dark theme */ /* Shadows */ @@ -137,7 +137,7 @@ /* Borders & Dividers */ --border-color: #404040; --border-light: #333333; - --icon-border: #2a2a2a; /* Much darker, less visible border for icons */ + --icon-border: #1e1e1e; /* Nearly invisible border for icons in dark theme */ --item-separator: rgba(255, 255, 255, 0.05); /* Very subtle separator in dark theme */ /* Shadows */