40 lines
1.2 KiB
SCSS
40 lines
1.2 KiB
SCSS
@import "agda";
|
|
@import "mixins";
|
|
@import "syntax";
|
|
|
|
@font-face {
|
|
font-family: 'PragmataPro Mono Liga';
|
|
src: url("/fonts/PragmataPro_Mono_R_liga_0829.woff2") format("woff2"),
|
|
url(https://mzhang.io/fonts/PragmataPro_Mono_R_liga_0829.woff2) format("woff2");
|
|
}
|
|
|
|
$sansfont: "Helvetica", "Arial", "Liberation Sans", sans-serif;
|
|
$monofont: "PragmataPro Mono Liga", "Roboto Mono", "Roboto Mono for Powerline", "Inconsolata", "Consolas", monospace;
|
|
|
|
// colors
|
|
|
|
@media (prefers-color-scheme: light) {
|
|
$background-color: white;
|
|
$faded-background-color: darken($background-color, 10%);
|
|
$heading-color: #15202B;
|
|
$text-color: #15202B;
|
|
$small-text-color: lighten($text-color, 10%);
|
|
$smaller-text-color: lighten($text-color, 20%);
|
|
$faded: lightgray;
|
|
$link-color: royalblue;
|
|
$code-color: firebrick;
|
|
@import "content";
|
|
}
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
$background-color: #151520;
|
|
$faded-background-color: lighten($background-color, 10%);
|
|
$heading-color: #E4E4E4;
|
|
$text-color: #BCBCBC;
|
|
$small-text-color: darken($text-color, 8%);
|
|
$smaller-text-color: darken($text-color, 12%);
|
|
$faded: #666;
|
|
$link-color: lightskyblue;
|
|
$code-color: lighten(firebrick, 25%);
|
|
@import "content";
|
|
}
|