From 5dc5a9826914f5189265b3881f92de01125b11b4 Mon Sep 17 00:00:00 2001 From: juanatsap Date: Wed, 19 Nov 2025 15:39:00 +0000 Subject: [PATCH] fix: Make icon borders nearly transparent in dark theme - Changed from #1e1e1e to rgba(255, 255, 255, 0.05) - Borders now 95% transparent, virtually invisible - Applies to ALL icon borders (OBS, LIV Golf, etc.) - Invert filter remains ONLY for LIV Golf logo --- 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 037eccc..6a034df 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: #1e1e1e; /* Nearly invisible border for icons in dark theme */ + --icon-border: rgba(255, 255, 255, 0.05); /* Nearly transparent 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: #1e1e1e; /* Nearly invisible border for icons in dark theme */ + --icon-border: rgba(255, 255, 255, 0.05); /* Nearly transparent border for icons in dark theme */ --item-separator: rgba(255, 255, 255, 0.05); /* Very subtle separator in dark theme */ /* Shadows */