Theme Switcher

This commit is contained in:
2024-05-24 21:37:33 +02:00
parent cceab89523
commit 4dc97daf63
8 changed files with 219 additions and 79 deletions
+13
View File
@@ -0,0 +1,13 @@
:root {
--bs-body-bg: black;
--bs-body-color: white;
}
body {
background-color: black;
color: white;
}
.form-select {
--bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}
+14
View File
@@ -0,0 +1,14 @@
:root {
--bs-body-bg: pink;
--bs-border-color: red;
--bs-body-color: red;
}
body {
background-color: pink;
color: red;
}
.form-select {
--bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ff0000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}