summaryrefslogtreecommitdiffstats
path: root/assets/css/_vars.scss
diff options
context:
space:
mode:
Diffstat (limited to 'assets/css/_vars.scss')
-rw-r--r--assets/css/_vars.scss21
1 files changed, 17 insertions, 4 deletions
diff --git a/assets/css/_vars.scss b/assets/css/_vars.scss
index 1ef0c8a..18cebc6 100644
--- a/assets/css/_vars.scss
+++ b/assets/css/_vars.scss
@@ -1,8 +1,8 @@
1$breakpoints: ( 1$breakpoints: (
2 xs: 320px,
3 sm: 600px,
4 md: 900px,
5 lg: 1500px, 2 lg: 1500px,
3 md: 900px,
4 sm: 600px,
5 xs: 320px,
6); 6);
7 7
8$unit-intervals: ( 8$unit-intervals: (
@@ -13,7 +13,7 @@ $unit-intervals: (
13); 13);
14 14
15$font-fam--text: 'IBM Plex Sans', 'Helvetica Neue', Arial, sans-serif; 15$font-fam--text: 'IBM Plex Sans', 'Helvetica Neue', Arial, sans-serif;
16$font-fam--large: 'Garet Variable', $font-fam--text; 16$font-fam--large: 'Garet', $font-fam--text;
17$font-fam--mono: 'Iosevka Term SS09', 'IBM Plex Mono', 'Menlo', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', Courier, monospace; 17$font-fam--mono: 'Iosevka Term SS09', 'IBM Plex Mono', 'Menlo', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', Courier, monospace;
18$font-size: 16px; 18$font-size: 16px;
19$line-height: 1.7; 19$line-height: 1.7;
@@ -29,6 +29,11 @@ $gray5: hsl(220, 0%, 73%);
29$gray6: hsl(220, 0%, 100%); 29$gray6: hsl(220, 0%, 100%);
30 30
31@include store(( 31@include store((
32 --dims: (
33 --nav: (
34 --height: 4.5rem
35 )
36 ),
32 --colors: ( 37 --colors: (
33 --bg-hi: $gray0, // Darker background 38 --bg-hi: $gray0, // Darker background
34 --bg: $gray1, // Background 39 --bg: $gray1, // Background
@@ -57,6 +62,14 @@ $gray6: hsl(220, 0%, 100%);
57 } 62 }
58} 63}
59 64
65@include store((
66 --dims: (
67 --nav: (
68 --height: 3.5rem
69 )
70 ),
71), 'sm');
72
60:root { 73:root {
61 --heading--fg: var(--colors--fg-lo); 74 --heading--fg: var(--colors--fg-lo);
62 75