diff options
| author | Jason McCormick <jdm@mfamily.org> | 2025-10-09 12:49:05 -0400 |
|---|---|---|
| committer | Jason McCormick <jdm@mfamily.org> | 2025-10-09 12:49:05 -0400 |
| commit | 3c02dc1c0cd480fc11647ec0f7900d4034a00cc4 (patch) | |
| tree | 468f503c5b64dec012ca3f09350a85aa500d20d5 /assets/sass/libs/_vars.scss | |
initial add
Diffstat (limited to 'assets/sass/libs/_vars.scss')
| -rw-r--r-- | assets/sass/libs/_vars.scss | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/assets/sass/libs/_vars.scss b/assets/sass/libs/_vars.scss new file mode 100644 index 0000000..3be728c --- /dev/null +++ b/assets/sass/libs/_vars.scss @@ -0,0 +1,43 @@ +// Misc.
+ $misc: (
+ z-index-base: 10000
+ );
+
+// Duration.
+ $duration: (
+ transition: 0.2s,
+ bg: 2.5s,
+ intro: 0.75s,
+ article: 0.325s
+ );
+
+// Size.
+ $size: (
+ border-radius: 4px,
+ border-width: 1px,
+ element-height: 2.75rem,
+ element-margin: 2rem
+ );
+
+// Font.
+ $font: (
+ family: ('Source Sans Pro', sans-serif),
+ family-fixed: ('Courier New', monospace),
+ weight: 300,
+ weight-bold: 600,
+ letter-spacing: 0.2rem,
+ letter-spacing-heading: 0.5rem
+ );
+
+// Palette.
+ $palette: (
+ bg: #1b1f22,
+ bg-alt: #000000,
+ bg-overlay: rgba(19,21,25,0.5),
+ fg: #ffffff,
+ fg-bold: #ffffff,
+ fg-light: rgba(255,255,255,0.5),
+ border: #ffffff,
+ border-bg: rgba(255,255,255,0.075),
+ border-bg-alt: rgba(255,255,255,0.175)
+ );
\ No newline at end of file |
