aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAutumn <git@autumnfo.rest>2026-05-13 19:33:11 +0100
committerAutumn <git@autumnfo.rest>2026-05-13 19:33:11 +0100
commit3e4b4a8cfd9085c13531828a350109adbadedc52 (patch)
tree97becfae0d19ddfc8522a9976b5fc0043c9c7193
parent455cca75a24abb9b31a84a6c0ab516045d0b1080 (diff)
[css] added background color
-rw-r--r--css/userChrome.css30
1 files changed, 30 insertions, 0 deletions
diff --git a/css/userChrome.css b/css/userChrome.css
index e69de29..a4f054b 100644
--- a/css/userChrome.css
+++ b/css/userChrome.css
@@ -0,0 +1,30 @@
+/*
+ * ~~~ firefox custom styling
+*/
+
+/*
+ * ~~~ variables */
+:root {
+
+ /* colors */
+ --autumn-color-background: #18181b;
+ --autumn-color-text: #e0e1e4;
+}
+
+/*
+ * ~~~ navbar */
+#nav-bar {
+ background-color: var(--autumn-color-background) !important;
+}
+
+/*
+ * ~~~ toolbar */
+#PersonalToolbar {
+ background-color: var(--autumn-color-background) !important;
+}
+
+/*
+ * ~~~ sidebar */
+#sidebar-main {
+ background-color: var(--autumn-color-background) !important;
+}