From 8865736fa78e20155a72ce6ac5b8f50081f309b7 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Sun, 27 Feb 2022 13:42:19 +0000 Subject: [PATCH 1/2] Newswire date color --- theme/pixel/theme.json | 1 + 1 file changed, 1 insertion(+) diff --git a/theme/pixel/theme.json b/theme/pixel/theme.json index 4e12d68ff..fd6e68145 100644 --- a/theme/pixel/theme.json +++ b/theme/pixel/theme.json @@ -75,6 +75,7 @@ "post-separator-margin-top": "10px", "post-separator-margin-bottom": "10px", "newswire-publish-icon": "True", + "newswire-date-color": "#5152a3", "full-width-timeline-buttons": "False", "icons-as-buttons": "False", "rss-icon-at-top": "True", From 5bd94b5267df388ba1c2ed91879e3625059f5822 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Sun, 27 Feb 2022 14:28:03 +0000 Subject: [PATCH 2/2] Set header font when setting custom font --- theme.py | 1 + 1 file changed, 1 insertion(+) diff --git a/theme.py b/theme.py index 52000e0c2..f89d24d20 100644 --- a/theme.py +++ b/theme.py @@ -513,6 +513,7 @@ def _set_custom_font(base_dir: str): "') format('" + custom_font_type + "')") css = set_css_param(css, "*font-family", "'CustomFont'") + css = set_css_param(css, "header-font", "'CustomFont'") filename = base_dir + '/' + filename with open(filename, 'w+') as cssfile: cssfile.write(css)