diff options
author | Kuuuube <61125188+Kuuuube@users.noreply.github.com> | 2024-06-30 20:42:39 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-01 00:42:39 +0000 |
commit | fafa1967363577a40b84543cb71c84b52a8d5f7a (patch) | |
tree | 99d183fea88f44271e7916991ddcd3b79e6f573d /ext/css | |
parent | dd7a4dea728251487851c11c6161461263081902 (diff) |
Fix dark/light mode footer message box colors (#1157)
Diffstat (limited to 'ext/css')
-rw-r--r-- | ext/css/display.css | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/ext/css/display.css b/ext/css/display.css index 99bc3606..febcb62b 100644 --- a/ext/css/display.css +++ b/ext/css/display.css @@ -168,11 +168,11 @@ --progress-bar-indicator-color: var(--accent-color); --entry-current-indicator-color: var(--accent-color); - --notification-text-color: #ffffff; - --notification-background-color: #333333; - --notification-background-color-light: #555555; - --notification-background-color-lighter: #666666; - --notification-shadow-color: rgba(0, 0, 0, 0.5); + --notification-text-color: #2f2f2f; + --notification-background-color: #f1f1f1; + --notification-background-color-light: #e1e1e1; + --notification-background-color-lighter: #bbbbbb; + --notification-shadow-color: rgba(255, 255, 255, 0.25); --action-button-hover-color: #dddddd; --action-button-active-color: #c1c1c1; @@ -236,11 +236,11 @@ --progress-bar-indicator-color: var(--accent-color); --entry-current-indicator-color: var(--accent-color); - --notification-text-color: #2f2f2f; - --notification-background-color: #e1e1e1; - --notification-background-color-light: #bbbbbb; - --notification-background-color-lighter: #aaaaaa; - --notification-shadow-color: rgba(255, 255, 255, 0.25); + --notification-text-color: #ffffff; + --notification-background-color: #333333; + --notification-background-color-light: #555555; + --notification-background-color-lighter: #666666; + --notification-shadow-color: rgba(0, 0, 0, 0.5); --action-button-hover-color: #282828; --action-button-active-color: #444444; |