From c974c17cd089dcbfb16fbde028dd00bcc05e3f73 Mon Sep 17 00:00:00 2001 From: Mateus Auler Date: Wed, 24 Jul 2024 10:24:31 +0000 Subject: [PATCH] vesktop: improve contrast (#482) Some generated text colors in dark themes are too close to the background color, making it hard to read. Fixes: #474 --- modules/vesktop/template.mustache | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/vesktop/template.mustache b/modules/vesktop/template.mustache index e7e0e25d..02e0020c 100644 --- a/modules/vesktop/template.mustache +++ b/modules/vesktop/template.mustache @@ -41,8 +41,8 @@ --background-modifier-hover: #{{base00-hex}}4c; /* 30% of base00 */ --background-modifier-selected: var(--base00); --text-normal: var(--base05); - --text-secondary: var(--base00); - --text-muted: var(--base03); + --text-secondary: var(--base03); + --text-muted: var(--base04); --text-link: var(--base0C); --interactive-normal: var(--base05); --interactive-hover: var(--base05); @@ -51,7 +51,7 @@ --channels-default: var(--base04); --channel-icon: var(--base04); --header-primary: var(--base06); - --header-secondary: var(--base03); + --header-secondary: var(--base04); --scrollbar-thin-track: transparent; --scrollbar-auto-track: transparent; }