refactor(login): page styling
All checks were successful
container-scan / Container Scan (pull_request) Successful in 1m52s
docker-build / docker (pull_request) Successful in 5m26s

This commit is contained in:
Dominik 2025-04-19 23:11:11 +02:00 committed by Dominik
parent d9705b8dfb
commit ec359f1eff
8 changed files with 66 additions and 43 deletions

View file

@ -25,12 +25,20 @@
--textbox-50: rgb(204, 204, 204, 0.5);
--textbox-75: rgb(204, 204, 204, 0.75);
--textbox-100: rgb(204, 204, 204, 1);
--base-1: #f3f3f3;
}
@media (prefers-color-scheme: dark) {
:root {
--background: #0a0a0a;
--foreground: #e5e7eb;
--textbox-50: rgb(75, 85, 99, 0.5);
--textbox-75: rgb(75, 85, 99, 0.75);
--textbox-100: rgb(75, 85, 99, 1);
--base-1: #111111;
}
}