aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorkj_sh6042026-03-14 01:51:36 -0400
committerkj_sh6042026-03-14 01:51:36 -0400
commita1f13001dab1c45c31bd38820ea53cf5f67bf5b1 (patch)
tree4d2a150d44b0bd36e9d7f937e30be7e5f351dc35 /src
parent15c1125c0c2176fd3a4d01ead6813640dbb184d8 (diff)
refactor: re-arrange fonts
Diffstat (limited to 'src')
-rw-r--r--src/app.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/app.py b/src/app.py
index 9eac40c..486fc90 100644
--- a/src/app.py
+++ b/src/app.py
@@ -200,7 +200,7 @@ def build_pdf_css(
if font_family == "sans":
font_stack = (
- '"TeX Gyre Heros", "CMU Sans Serif", "Liberation Sans", FreeSans, "Droid Sans", '
+ '"Liberation Sans", "TeX Gyre Heros", "CMU Sans Serif", FreeSans, "Droid Sans", '
'"Segoe UI Variable", "Segoe UI", Tahoma, "SF Pro Text", '
'"SF Pro Display", "Helvetica Neue", Helvetica, Arial, '
'"Lucida Grande", sans-serif'
@@ -215,7 +215,7 @@ def build_pdf_css(
)
else:
font_stack = (
- '"CMU Serif", "TeX Gyre Termes", "Liberation Serif", FreeSerif, '
+ '"CMU Serif", "Liberation Serif", "TeX Gyre Termes", FreeSerif, '
'"Nimbus Roman", "Droid Serif", "Times New Roman", Cambria, '
'Constantia, Georgia, "New York", Garamond, "Times", '
'Palatino, "Book Antiqua", serif'