From ac2c9415c04209d6957993cc50be56b802e8e329 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mateusz=20Gruszczy=C5=84ski?= Date: Tue, 25 Feb 2025 16:43:26 +0100 Subject: [PATCH] dark mode --- templates/base.html | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/templates/base.html b/templates/base.html index 20a9d90..b9c0e47 100644 --- a/templates/base.html +++ b/templates/base.html @@ -174,6 +174,26 @@ box-shadow: none !important; } + + .dark-mode .btn-secondary:hover { + background-color: #555 !important; + border-color: #888888 !important; + color: #fff !important; + } + + .dark-mode .btn-warning:hover { + background-color: #e6aa00 !important; + border-color: #c98f00 !important; + color: #fff !important; + } + + .dark-mode .btn-outline-dark:hover { + background-color: #444 !important; + border-color: #888888 !important; + color: #fff !important; + } + +