diff --git a/README.md b/README.md index 52766e4..9460c6b 100644 --- a/README.md +++ b/README.md @@ -14,8 +14,9 @@ npm install astro-theme-toggle ## Usage -1. Add the `ThemeScript` component to your `
`. This will toggle the `dark` - class on your `` element based on the user's theme preference. +1. Add the `ThemeScript` component to your ``. This will set the + `data-theme` attribute and toggle the `dark` class on your `` element + based on the user's theme preference. ```astro --- diff --git a/lib/theme-script.astro b/lib/theme-script.astro index a77ea54..41d4dbc 100644 --- a/lib/theme-script.astro +++ b/lib/theme-script.astro @@ -1,4 +1,4 @@ diff --git a/lib/theme-script.ts b/lib/theme-script.ts index 4e6a535..97de560 100644 --- a/lib/theme-script.ts +++ b/lib/theme-script.ts @@ -29,6 +29,7 @@ function setStyle(theme: Theme) { const root = document.documentElement root.classList.toggle('dark', theme === 'dark') + root.dataset.theme = theme root.style.colorScheme = theme }