blog/sass/main.scss

25 lines
630 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-12 03:51:19 +00:00
$small-text-color: lighten($text-color, 10%);
2020-02-12 03:21:15 +00:00
$link-color: royalblue;
@import "content";
2020-02-12 06:21:08 +00:00
@import "graph";
2018-05-28 19:19:14 +00:00
}
2020-02-12 03:21:15 +00:00
@media (prefers-color-scheme: dark) {
$background-color: #15202B;
$text-color: #EADFD4;
2020-02-12 03:51:19 +00:00
$small-text-color: darken($text-color, 10%);
2020-02-12 03:21:15 +00:00
$link-color: lightskyblue;
@import "content";
2020-02-12 06:21:08 +00:00
@import "graph";
2018-09-22 08:17:41 +00:00
}