From 4561c611993bca2f3380fa606c2cd41b8b331a6d Mon Sep 17 00:00:00 2001 From: Harry Mellor <19981378+hmellor@users.noreply.github.com> Date: Fri, 21 Feb 2025 16:18:35 +0000 Subject: [PATCH] Add auto darkmode (#33) Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.github.com> --- _config.yml | 2 ++ _sass/minima/custom-styles.scss | 3 +++ 2 files changed, 5 insertions(+) create mode 100644 _sass/minima/custom-styles.scss diff --git a/_config.yml b/_config.yml index e81135d..43884c4 100644 --- a/_config.yml +++ b/_config.yml @@ -20,6 +20,8 @@ plugins: # Theme-specific settings minima: + skin: auto + # Minima date format. # Refer to https://shopify.github.io/liquid/filters/date/ if you want to customize this. # diff --git a/_sass/minima/custom-styles.scss b/_sass/minima/custom-styles.scss new file mode 100644 index 0000000..14a2eb7 --- /dev/null +++ b/_sass/minima/custom-styles.scss @@ -0,0 +1,3 @@ +img { + background-color: $lm-background-color; +} \ No newline at end of file