MOVE: Theme to quick settings

This commit is contained in:
EvanLin3141
2025-02-09 17:19:34 +00:00
parent 8942298b38
commit 4cc48fe0b2
9 changed files with 119 additions and 59 deletions

View File

@@ -8,6 +8,8 @@
--sideBar-DarkBG: black;
--sideBar-DarkText: white;
--quickBar-DarkBG: rgb(0,0,0,0.5)
}
@@ -30,6 +32,35 @@
}
body[data-theme="light"] {
--bg-color: white;
--text-color: black;
}
body[data-theme="dark"] {
--bg-color: black;
--text-color: white;
}
body[data-theme="blue"] {
--bg-color: #e0f7fa;
--text-color: #004d40;
}
body[data-theme="green"] {
--bg-color: #e8f5e9;
--text-color: #2e7d32;
}
body[data-theme="orange"] {
--bg-color: #ffe0b2;
--text-color: #e65100;
}
body {
background-color: var(--bg-color);
color: var(--text-color);
}