From 77bfdadf1d62d99c55419b39fc8310d029ab0eb8 Mon Sep 17 00:00:00 2001 From: Colin Watson Date: Mon, 2 Aug 2021 11:59:47 +0100 Subject: [PATCH] Make light theme a bit more like dark theme --- m.css/css/m-theme-light.css | 12 ++++++------ publishconf.py | 6 ------ 2 files changed, 6 insertions(+), 12 deletions(-) diff --git a/m.css/css/m-theme-light.css b/m.css/css/m-theme-light.css index 18fdfc63..8caa031b 100644 --- a/m.css/css/m-theme-light.css +++ b/m.css/css/m-theme-light.css @@ -24,22 +24,22 @@ :root { /* Text properties */ - --font: 'Libre Baskerville', serif; + --font: 'Source Sans Pro', sans-serif; --code-font: 'Source Code Pro', monospace; - --font-size: 14px; - --code-font-size: 1em; /* *not* rem, so it follows surrounding font size */ + --font-size: 16px; + --code-font-size: 0.9em; /* *not* rem, so it follows surrounding font size */ --line-height: normal; --paragraph-indent: 1.5rem; --paragraph-align: justify; --link-decoration: underline; --link-decoration-nav: none; --link-decoration-heading: none; - --nav-brand-case: lowercase; - --nav-menu-case: lowercase; + --nav-brand-case: uppercase; + --nav-menu-case: none; --nav-heading-case: uppercase; --nav-categories-case: lowercase; --landing-header-case: lowercase; - --heading-font-weight: normal; + --heading-font-weight: 600; /* Shapes */ --border-radius: 0.2rem; diff --git a/publishconf.py b/publishconf.py index 7612687c..3caf38f7 100644 --- a/publishconf.py +++ b/publishconf.py @@ -18,12 +18,6 @@ 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