mirror of
https://github.com/hyzendust/hyzendust.github.io.git
synced 2026-02-15 00:01:11 +01:00
21 lines
779 B
SCSS
21 lines
779 B
SCSS
// Variables
|
|
$body-margin-left: 16px !default;
|
|
$body-margin-right: 16px !default;
|
|
$font-family: sans-serif !default;
|
|
$base-font-size: 18px !default;
|
|
$line-height: 1.5 !default;
|
|
$body-max-width: 768px !default;
|
|
$desktop-breakpoint: $body-max-width + $body-margin-left + $body-margin-right !default;
|
|
|
|
// Color, see https://github.com/morhetz/gruvbox
|
|
$background-color-light: #fbf1c7 !default;
|
|
$background-color1-light: #ebdbb2 !default;
|
|
$foreground-color-light: #3c3836 !default;
|
|
$foreground-color3-light: #665c54 !default;
|
|
$accent-color-light: #af3a03 !default; // orange
|
|
|
|
$background-color-dark: #282828 !default;
|
|
$background-color1-dark: #3c3836 !default;
|
|
$foreground-color-dark: #ebdbb2 !default;
|
|
$foreground-color3-dark: #bdae93 !default;
|
|
$accent-color-dark: #fe8019 !default; |