blog/assets/sass/main.scss

23 lines
588 B
SCSS
Raw Normal View History

2020-02-12 03:21:15 +00:00
@import "syntax";
2018-08-09 06:53:47 +00:00
2020-02-12 03:21:15 +00:00
$sansfont: "Helvetica", "Arial", "Liberation Sans", sans-serif;
2019-06-29 18:04:30 +00:00
$monofont: "Roboto Mono", "Roboto Mono for Powerline", "Inconsolata", "Consolas", monospace;
2020-02-12 03:21:15 +00:00
// colors
2019-06-29 18:04:30 +00:00
2020-02-12 03:21:15 +00:00
@media (prefers-color-scheme: light) {
2020-02-12 07:44:23 +00:00
$background-color: white;
2020-02-12 03:21:15 +00:00
$text-color: #15202B;
2020-02-18 01:04:27 +00:00
$small-text-color: lighten($text-color, 15%);
2020-02-12 03:21:15 +00:00
$link-color: royalblue;
@import "content";
2018-05-28 19:19:14 +00:00
}
2020-02-12 03:21:15 +00:00
@media (prefers-color-scheme: dark) {
$background-color: #15202B;
2020-02-18 01:04:27 +00:00
$text-color: #D4D4D4;
$small-text-color: darken($text-color, 15%);
2020-02-12 03:21:15 +00:00
$link-color: lightskyblue;
@import "content";
2018-09-22 08:17:41 +00:00
}