Files
hugo-coder-timeline/assets/scss/_variables.scss
Ariejan de Vroom fa3de1efaf Adjust dark mode colorscheme (#225)
* Adjust dark mode colorscheme

This makes the whites a bit softer and instead of
inverting the blue hyperlinks, they're now desaturated -
but still blue.

* Add Ariejan de Vroom to CONTRIBUTORS
2019-10-09 11:14:10 -03:00

19 lines
559 B
SCSS

// Fonts
$text-font-family: Merriweather, Georgia, serif;
$heading-font-family: Lato, Helvetica, sans-serif;
$code-font-family: 'Source Code Pro', 'Lucida Console', monospace;
// Colors
$bg-color: #FAFAFA !default;
$fg-color: #212121 !default;
$alt-bg-color: #E0E0E0 !default;
$alt-fg-color: #000 !default;
$link-color: #1565c0 !default;
// Colors inverted
$bg-color-inverted: #212121 !default;
$fg-color-inverted: #dadada !default;
$alt-bg-color-inverted: #424242 !default;
$alt-fg-color-inverted: #dadada !default;
$link-color-inverted: #36679f !default;