about summary refs log tree commit diff
path: root/src/frontend/style.css
diff options
context:
space:
mode:
Diffstat (limited to 'src/frontend/style.css')
-rw-r--r--src/frontend/style.css7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/frontend/style.css b/src/frontend/style.css
index 2c43808..1d6586b 100644
--- a/src/frontend/style.css
+++ b/src/frontend/style.css
@@ -5,6 +5,9 @@
     --font-normal: 'Lato', sans-serif;
     --font-accent: 'Caveat', cursive;
     --type-scale: 1.250;
+
+    --primary-accent: purple;
+    --secondary-accent: gold;
 }
 * {
     box-sizing: border-box;
@@ -31,9 +34,9 @@ h6, .normal {font-size: 1rem;}
 small, .small { font-size: 0.8em; }
 
 nav#headerbar {
-    background: purple;
+    background: var(--primary-accent);
     color: whitesmoke;
-    border-bottom: .75rem solid gold;
+    border-bottom: .75rem solid var(--secondary-accent);
     padding: .3rem;
     vertical-align: center;
     position: sticky;