Add transparency effects toggle to settings

This commit is contained in:
SethBurkart123
2023-11-14 17:30:19 +11:00
parent 34931775c2
commit 8dbc138638
8 changed files with 24 additions and 9 deletions
+1
View File
@@ -1,6 +1,7 @@
@import url("https://fonts.googleapis.com/css?family=Rubik:300,400,500,600");
@import "./injected/popup.css";
@import "./injected/sidebar-animation.css";
@import "./injected/theme.css";
:root {
background: var(--better-main) !important;
+11
View File
@@ -0,0 +1,11 @@
html.dark {
--background-primary: #232323;
--background-secondary: #1a1a1a;
--text-primary: white;
}
html:not(.dark) {
--background-primary: #ffffff;
--background-secondary: #e5e7eb;
--text-primary: black;
}