From 657ad09a2009e9b331aa67fe3b27f8bea30eb417 Mon Sep 17 00:00:00 2001 From: Joseph Montanaro Date: Sat, 7 Mar 2026 13:18:56 -0500 Subject: [PATCH] all the themes together + switcher --- src/components/ThemeSwitcher.astro | 66 ++++++++++++++ src/layouts/BaseLayout.astro | 5 ++ src/styles/vars.css | 135 ++++++++++++++++++++++++++--- 3 files changed, 194 insertions(+), 12 deletions(-) create mode 100644 src/components/ThemeSwitcher.astro diff --git a/src/components/ThemeSwitcher.astro b/src/components/ThemeSwitcher.astro new file mode 100644 index 0000000..a1897cb --- /dev/null +++ b/src/components/ThemeSwitcher.astro @@ -0,0 +1,66 @@ +--- +--- + +
+ + +
+ + + + diff --git a/src/layouts/BaseLayout.astro b/src/layouts/BaseLayout.astro index edc9671..fe8fa04 100644 --- a/src/layouts/BaseLayout.astro +++ b/src/layouts/BaseLayout.astro @@ -1,10 +1,12 @@ --- import '@styles/main.css'; +import ThemeSwitcher from '@components/ThemeSwitcher.astro'; ---