From 33b7e5cf34377c27f9772cb38653d651afd5b7a4 Mon Sep 17 00:00:00 2001 From: "Timur Kh." Date: Tue, 31 Mar 2026 21:48:11 +0300 Subject: [PATCH] fix colors --- index.html | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/index.html b/index.html index 836f195..a59049e 100644 --- a/index.html +++ b/index.html @@ -518,12 +518,8 @@ color: var(--bs-list-group-color); } - [data-bs-theme=dark] svg { - filter: invert(100%) sepia(10%) saturate(7500%) hue-rotate(198deg) brightness(120%) contrast(108%); - } - - [data-bs-theme=dark] *, - [data-bs-theme=dark] .subscription .list-group-item span { + [data-bs-theme=dark] body, + [data-bs-theme=dark] main { background-color: #181818; } @@ -538,6 +534,11 @@ background-color: #383838; } + /* Make inline SVG icons follow text color (incl. Telegram icon) */ + svg { + fill: currentColor; + } +