From 515ccaacd9c41497e75cc7ba4161b0f61d240fc9 Mon Sep 17 00:00:00 2001 From: Gusted Date: Sat, 6 Apr 2024 20:38:37 +0200 Subject: [PATCH] [BUG] Fix tone of callout boxes for Forgejo dark - Adjust the warning and success text to be more representive (make them more green and yellow). They still confirm to AAA contrast. - For important, note and caution callout boxes make use of the light variants for the colors colors rather than the dark variant. - Resolves #3084 --- web_src/css/themes/theme-forgejo-dark.css | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/web_src/css/themes/theme-forgejo-dark.css b/web_src/css/themes/theme-forgejo-dark.css index 43d8428e97..e8744f32ef 100644 --- a/web_src/css/themes/theme-forgejo-dark.css +++ b/web_src/css/themes/theme-forgejo-dark.css @@ -157,10 +157,10 @@ --color-error-text: #fef2f2; --color-success-border: #1f6e3c; --color-success-bg: #1d462c; - --color-success-text: #f0fdf4; + --color-success-text: #aef0c2; --color-warning-border: #a67a1d; --color-warning-bg: #644821; - --color-warning-text: #fefce8; + --color-warning-text: #fff388; --color-info-border: #2e50b0; --color-info-bg: #2a396b; --color-info-text: var(--steel-100); @@ -308,3 +308,12 @@ i.grey.icon.icon.icon.icon { background: var(--steel-100) !important; color: var(--color-white) !important; } +strong.attention-important, svg.attention-important { + color: var(--color-violet-light); +} +strong.attention-note, svg.attention-note { + color: var(--color-blue-light); +} +strong.attention-caution, svg.attention-caution { + color: var(--color-red-light); +}