2022-12-03 15:27:03 +00:00
|
|
|
// Fonts
|
2022-12-04 16:42:00 +00:00
|
|
|
$text-font-family: "Atkinson Hyperlegible", Atkinson-Hyperlegible, AtkinsonHyperlegible, "Open Dyslexic", Open-Dyslexic, OpenDyslexic,"Atkinson Hyperlegible", Atkinson-Hyperlegible, AtkinsonHyperlegible, "Open Dyslexic", Open-Dyslexic, OpenDyslexic, sans-serif;;
|
|
|
|
$heading-font-family: "Atkinson Hyperlegible", Atkinson-Hyperlegible, AtkinsonHyperlegible, "Open Dyslexic", Open-Dyslexic, OpenDyslexic, sans-serif;
|
2022-12-03 15:27:03 +00:00
|
|
|
$code-font-family: monospace;
|
|
|
|
$font-weight-light: 300;
|
|
|
|
$font-weight-regular: 400;
|
|
|
|
$font-weight-heavy: 700;
|
|
|
|
$font-height: 1.4;
|
|
|
|
|
|
|
|
// Grays
|
|
|
|
$black: #000;
|
|
|
|
$darkerGray: #222;
|
|
|
|
$darkGray: #444;
|
|
|
|
$gray: #666;
|
|
|
|
$lightGray: #ccc;
|
|
|
|
$lighterGray: #eee;
|
|
|
|
$reallyLightGray: hsl(210, 9%, 96%);
|
|
|
|
$lightestGray: #F8F8F8;
|
|
|
|
$white: #fff;
|
|
|
|
|
|
|
|
// Colors
|
|
|
|
$blue: #007FFF;
|
|
|
|
$bg-color: $white !default;
|
|
|
|
$fg-color: $darkerGray !default;
|
|
|
|
$alt-bg-color: #E0E0E0 !default;
|
|
|
|
$alt-fg-color: $black !default;
|
|
|
|
$link-color: $blue !default;
|
|
|
|
|
|
|
|
// Colors inverted
|
|
|
|
$bg-color-inverted: #212121 !default;
|
|
|
|
$fg-color-inverted: #fafafa !default;
|
|
|
|
$alt-bg-color-inverted: #424242 !default;
|
|
|
|
$alt-fg-color-inverted: #fafafa !default;
|
|
|
|
$link-color-inverted: #f44336 !default;
|