From 6f3bc0652f1f9c735093c89c7fcbae351f7fb0ad Mon Sep 17 00:00:00 2001 From: Runxi Yu Date: Mon, 10 Mar 2025 16:48:59 +0800 Subject: [PATCH] css: Make --danger-color actually red --- static/style.css | 4 ++-- diff --git a/static/style.css b/static/style.css index 6d5c9ca48ce1c7961ffba67cfaa5151f0f469027..efe5e6d67896203a5b8d278fdb7b30c007284bec 100644 --- a/static/style.css +++ b/static/style.css @@ -20,8 +20,8 @@ --darker-box-background-color: hsl(0, 0%, 92%); --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 */ -- 2.48.1