diff --git a/static/css/01-foundation/_themes.css b/static/css/01-foundation/_themes.css index 1f99e6b..9365f11 100644 --- a/static/css/01-foundation/_themes.css +++ b/static/css/01-foundation/_themes.css @@ -297,11 +297,13 @@ [data-color-theme="dark"] img[src*="livgolf"], [data-color-theme="auto"] img[src*="livgolf"] { filter: invert(1); + border-color: #a1a1a1 !important; /* Inverted #5e5e5e - becomes #5e5e5e after invert */ } /* Only apply invert to auto theme when system is in dark mode */ @media (prefers-color-scheme: light) { [data-color-theme="auto"] img[src*="livgolf"] { filter: none; + border-color: var(--icon-border) !important; /* Reset to normal border */ } }