mirror of
https://github.com/upscayl/upscayl.git
synced 2024-11-27 17:00:52 +01:00
Change default theme
This commit is contained in:
parent
982f847267
commit
8fdf9518cf
@ -37,7 +37,7 @@ export function ThemeSelect() {
|
||||
<div className="flex flex-col gap-2">
|
||||
<p className="text-sm font-medium">UPSCAYL THEME</p>
|
||||
<select data-choose-theme className="select-primary select">
|
||||
<option value="dark">Default</option>
|
||||
<option value="upscayl">Default</option>
|
||||
{availableThemes.map((theme) => {
|
||||
return (
|
||||
<option value={theme.value} key={theme.value}>
|
||||
|
@ -11,7 +11,7 @@ const MyApp = ({ Component, pageProps }: AppProps) => {
|
||||
<title>Upscayl</title>
|
||||
</Head>
|
||||
<Provider>
|
||||
<Component {...pageProps} data-theme="dark" />
|
||||
<Component {...pageProps} data-theme="upscayl" />
|
||||
</Provider>
|
||||
</>
|
||||
);
|
||||
|
Loading…
Reference in New Issue
Block a user