diff options
author | Runxi Yu <me@runxiyu.org> | 2025-03-10 16:48:59 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2025-03-10 16:49:15 +0800 |
commit | 6f3bc0652f1f9c735093c89c7fcbae351f7fb0ad (patch) | |
tree | 86a0a7f8954b1688098e3043be0d078544432ea0 /static | |
parent | index: Humanize allocated size (diff) | |
download | forge-6f3bc0652f1f9c735093c89c7fcbae351f7fb0ad.tar.gz forge-6f3bc0652f1f9c735093c89c7fcbae351f7fb0ad.tar.zst forge-6f3bc0652f1f9c735093c89c7fcbae351f7fb0ad.zip |
css: Make --danger-color actually red
Diffstat (limited to 'static')
-rw-r--r-- | static/style.css | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/static/style.css b/static/style.css index 6d5c9ca..efe5e6d 100644 --- a/static/style.css +++ b/static/style.css @@ -20,8 +20,8 @@ html { --lighter-box-background-color: hsl(0, 0%, 95%); --primary-color: hsl(320, 50%, 36%); --primary-color-contrast: hsl(320, 0%, 100%); - --danger-color: hsl(0, 50%, 36%); - --danger-color-contrast: hsl(0, 0%, 100%); + --danger-color: #ff0000; + --danger-color-contrast: #ffffff; } /* Dark mode overrides */ |