From 84f1605728a7ecdb32dc9b50542f13f161cdcf5f Mon Sep 17 00:00:00 2001 From: Snow <135516526+BabyBoySnow@users.noreply.github.com> Date: Wed, 9 Oct 2024 16:42:49 -0500 Subject: [PATCH] no one said I couldn't :shruggie: --- ClearVision_v6.theme.css | 1 + src/defaultSettings.scss | 1 + src/guilds/guilds.scss | 4 ++-- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/ClearVision_v6.theme.css b/ClearVision_v6.theme.css index 215d226b1..7b5391820 100644 --- a/ClearVision_v6.theme.css +++ b/ClearVision_v6.theme.css @@ -36,6 +36,7 @@ --text-muted: rgb(114, 118, 125); /* color of default discord muted text (e.g.text found in input fields before typing).*/ --channels-width: 220px; /* channel list width (240px for Discord default) [default: 220px] */ --members-width: 240px; /* member list width [default: 240px] */ + --server-unread: var(--main-color); /* Color of the icon for servers with unread messages [default: var(--main-color)] */ /* APP BACKGROUND */ --background-shading: 100%; /* app background shading (0 for complete smoothness) [default: 100%] */ diff --git a/src/defaultSettings.scss b/src/defaultSettings.scss index 100609ff2..c36ade1f8 100644 --- a/src/defaultSettings.scss +++ b/src/defaultSettings.scss @@ -7,6 +7,7 @@ --channel-unread: var(--main-color); --channel-color: rgba(255, 255, 255, 0.3); --muted-color: rgba(255, 255, 255, 0.1); + --server-unread: var(--main-color); --channel-text-selected: #fff; --url-color: var(--main-color); --online-color: #43b581; diff --git a/src/guilds/guilds.scss b/src/guilds/guilds.scss index 543f1815a..d0bd89da4 100644 --- a/src/guilds/guilds.scss +++ b/src/guilds/guilds.scss @@ -66,8 +66,8 @@ width: 12px; margin-left: -6px; border-radius: 20px; - background: $main-color; - box-shadow: 0 0 20px -1px $main-color; + background: var(--server-unread); + box-shadow: 0 0 20px -1px var(--server-unread); &[style*='height: 8px'] { height: 10px !important; }