blog/assets/sass/main.scss

35 lines
959 B
SCSS
Raw Normal View History

2020-02-12 03:21:15 +00:00
@import "syntax";
2021-12-12 19:56:54 +00:00
@import "agda";
@font-face {
font-family: 'PragmataPro Mono Liga';
src: url('/fonts/PragmataPro_Mono_R_liga_0829.woff2') format('woff2');
}
2018-08-09 06:53:47 +00:00
2020-02-12 03:21:15 +00:00
$sansfont: "Helvetica", "Arial", "Liberation Sans", sans-serif;
2021-12-12 19:56:54 +00:00
$monofont: "PragmataPro Mono Liga", "Roboto Mono", "Roboto Mono for Powerline", "Inconsolata", "Consolas", monospace;
2019-06-29 18:04:30 +00:00
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;
2021-08-30 07:52:21 +00:00
$heading-color: #15202B;
2020-02-12 03:21:15 +00:00
$text-color: #15202B;
2021-07-06 21:57:42 +00:00
$small-text-color: lighten($text-color, 10%);
$smaller-text-color: lighten($text-color, 18%);
2021-07-06 22:27:33 +00:00
$faded: lightgray;
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;
2021-08-30 07:52:21 +00:00
$heading-color: #E4E4E4;
$text-color: #BCBCBC;
$small-text-color: darken($text-color, 8%);
$smaller-text-color: darken($text-color, 12%);
2021-07-06 22:27:33 +00:00
$faded: #666;
2020-02-12 03:21:15 +00:00
$link-color: lightskyblue;
@import "content";
2018-09-22 08:17:41 +00:00
}