Skip to content

Commit 1842780

Browse files
author
Arnaud DERBEY
committed
update readme
1 parent a921cc2 commit 1842780

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ While usable, this library is still in its early phase, PR are welcome.
66

77
An abstraction for themes in your SvelteKit.js app.
88

9-
- ✅ Perfect dark mode in 1 line of code
9+
- ✅ Perfect dark mode in 2 lines of code
1010
- ✅ System setting with prefers-color-scheme
1111
- ✅ Themed browser UI with color-scheme
1212
- ✅ No flash on load

src/components/page.svelte

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@
44

55
<div>
66
<h1>Svelte-themes example</h1>
7-
<p>resolvedTheme: {$themeStore.resolvedTheme}</p>
8-
<p>theme: {$themeStore.theme}</p>
7+
98
<select bind:value={$themeStore.theme}
109
><option value="dark">Dark</option><option value="light">Light</option><option value="system"
1110
>System</option

0 commit comments

Comments
 (0)