From eae02cff80b90829b8ecd1045445fd4f3163ecf8 Mon Sep 17 00:00:00 2001 From: Colin Watson Date: Mon, 2 Aug 2021 11:53:47 +0100 Subject: [PATCH] Use m.css light theme --- pelicanconf.py | 4 ++-- publishconf.py | 6 ++++++ 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/pelicanconf.py b/pelicanconf.py index a5797574..1ddb1c47 100644 --- a/pelicanconf.py +++ b/pelicanconf.py @@ -36,9 +36,9 @@ DIRECT_TEMPLATES = ['index'] M_CSS_FILES = [ 'static/source-sans-pro.css', 'static/source-code-pro.css', - 'static/m-dark.css', + 'static/m-light.css', ] -M_THEME_COLOR = '#22272e' +M_THEME_COLOR = '#cb4b16' PLUGIN_PATHS = ['m.css/plugins'] PLUGINS = ['m.htmlsanity'] diff --git a/publishconf.py b/publishconf.py index 3caf38f7..7612687c 100644 --- a/publishconf.py +++ b/publishconf.py @@ -18,6 +18,12 @@ CATEGORY_FEED_ATOM = 'feeds/%s.atom.xml' DELETE_OUTPUT_DIRECTORY = True +M_CSS_FILES = [ + 'static/source-sans-pro.css', + 'static/source-code-pro.css', + 'static/m-light-compiled.css', + ] + # Following items are often useful when publishing #DISQUS_SITENAME = "" -- 2.30.2