summaryrefslogtreecommitdiff
path: root/themes/terminal/assets/css/variables.css
diff options
context:
space:
mode:
Diffstat (limited to 'themes/terminal/assets/css/variables.css')
-rw-r--r--themes/terminal/assets/css/variables.css13
1 files changed, 13 insertions, 0 deletions
diff --git a/themes/terminal/assets/css/variables.css b/themes/terminal/assets/css/variables.css
new file mode 100644
index 0000000..33fd8d8
--- /dev/null
+++ b/themes/terminal/assets/css/variables.css
@@ -0,0 +1,13 @@
+:root {
+ --accent: #FFA86A;
+ --background: color-mod(var(--accent) blend(#1D1E28 98%));
+ --color: white;
+ --border-color: rgba(255, 255, 255, .1);
+
+ /* variables for js, must be the same as these in @custom-media queries */
+ --phoneWidth: (max-width: 684px);
+ --tabletWidth: (max-width: 900px);
+}
+
+@custom-media --phone (max-width: 684px);
+@custom-media --tablet (max-width: 900px);