diff --git a/source/src/components/global/Head.astro b/source/src/components/global/Head.astro index b8b8403..790d821 100644 --- a/source/src/components/global/Head.astro +++ b/source/src/components/global/Head.astro @@ -1,6 +1,13 @@ --- // Components import { Tooltips } from 'astro-tooltips' + +// User Configuration +if (Astro.cookies.get("Theme").value === "Light") { + var ThemeScheme = 'light' +} else if (Astro.cookies.get("Theme").value === "Dark") { + var ThemeScheme = 'dark' +} ---
@@ -15,6 +22,23 @@ import { Tooltips } from 'astro-tooltips' + +