diff options
Diffstat (limited to 'themes/polaris/assets/css/style.css')
-rw-r--r-- | themes/polaris/assets/css/style.css | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/themes/polaris/assets/css/style.css b/themes/polaris/assets/css/style.css index 0d95e73..8561ff2 100644 --- a/themes/polaris/assets/css/style.css +++ b/themes/polaris/assets/css/style.css @@ -7,12 +7,20 @@ --nav-active-background: #eeeeee; --nav-active-foreground: #1a1a1a; --hr-background: #8a8a8a; + --sans-serif-font: Noto Serif, -apple-system, BlinkMacSystemFont, avenir next, avenir, segoe ui, helvetica neue, Cantarell, Ubuntu, roboto, noto, helvetica, arial, sans-serif; + --serif-font: Noto Serif, Iowan Old Style, Apple Garamond, Baskerville, Times New Roman, Droid Serif, Times, Source Serif Pro, serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol; + --mono-font: monospace; } body { margin: 0; background-color: var(--body-background); color: var(--body-foreground); + font-family: var(--sans-serif-font); +} + +h1, h2, h3, h4, h5, h6 { + font-family: var(--serif-font); } a { |