From ed1f2dcd5344ec99037cd0e7c6c9b9af7cb1c005 Mon Sep 17 00:00:00 2001 From: 1over137 <22680475+1over137@users.noreply.github.com> Date: Tue, 2 Jan 2024 10:14:30 +0000 Subject: [PATCH] Fix text color on light theme (#362) * Apply color on widget title * Update dnd.scss * Update style.scss --- data/style/style.scss | 1 + data/style/widgets/dnd.scss | 1 + data/style/widgets/title.scss | 1 + 3 files changed, 3 insertions(+) diff --git a/data/style/style.scss b/data/style/style.scss index 4b02552..fb2c555 100644 --- a/data/style/style.scss +++ b/data/style/style.scss @@ -286,6 +286,7 @@ $notification-shadow: 0 0 0 1px rgba(0, 0, 0, 0.3), .control-center { /* The Control Center which contains the old notifications + widgets */ background: #{"@cc-bg"}; + color: #{"@text-color"}; border-radius: $border-radius; .control-center-list-placeholder { diff --git a/data/style/widgets/dnd.scss b/data/style/widgets/dnd.scss index 4a3ee24..947b841 100644 --- a/data/style/widgets/dnd.scss +++ b/data/style/widgets/dnd.scss @@ -1,4 +1,5 @@ .widget-dnd { + color: #{"@text-color"}; margin: 8px; font-size: 1.1rem; } diff --git a/data/style/widgets/title.scss b/data/style/widgets/title.scss index 35df1e1..c06027b 100644 --- a/data/style/widgets/title.scss +++ b/data/style/widgets/title.scss @@ -1,4 +1,5 @@ .widget-title { + color: #{"@text-color"}; margin: 8px; font-size: 1.5rem; }