From 196d9a13f97701a1dbd269a89d92e59a2ae8f2c2 Mon Sep 17 00:00:00 2001 From: Belmin Began Date: Mon, 26 Aug 2024 18:11:19 +0200 Subject: [PATCH] Feat: Implements new color theme based on the mother duck site --- src/_data/themes.js | 4 ++++ src/styles/components/_themes.css | 8 ++++++++ 2 files changed, 12 insertions(+) diff --git a/src/_data/themes.js b/src/_data/themes.js index 47e3bdb8..7e77513a 100644 --- a/src/_data/themes.js +++ b/src/_data/themes.js @@ -30,5 +30,9 @@ module.exports = [ { id: 'blue', title: 'Blue', + }, + { + id: 'playful-retro', + title: 'Playful Retro', } ]; \ No newline at end of file diff --git a/src/styles/components/_themes.css b/src/styles/components/_themes.css index 24bd37e1..eff737ce 100644 --- a/src/styles/components/_themes.css +++ b/src/styles/components/_themes.css @@ -82,4 +82,12 @@ html.theme-blue, .theme-picker li.theme-blue { --foreground: #FBF8BE; --foreground-muted: #bdc5ad; --accent: #fbbc55; +} + +html.theme-playful-retro, .theme-picker li.theme-playful-retro { + --background: #ffe08a; + --background-muted: #78d1e9; + --foreground: #1a1a1a; + --foreground-muted: #6c45b3; + --accent: #ff3b30; } \ No newline at end of file