-
Notifications
You must be signed in to change notification settings - Fork 441
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: add button and update css vars * feat: add theme toggle * chore: add some light theme colors * feat: make theme system backward compatible
- Loading branch information
1 parent
88fae3b
commit fc83d9c
Showing
10 changed files
with
413 additions
and
52 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,10 @@ | ||
import { ThemeToggle } from "../../v2/components/ThemeToggle" | ||
|
||
export default function Page() { | ||
return <h1>Playground</h1> | ||
return ( | ||
<div> | ||
<h1>Playground</h1> | ||
<ThemeToggle /> | ||
</div> | ||
) | ||
} |
Oops, something went wrong.