1
0
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:
Nayam Amarshe 2023-08-30 13:29:39 +05:30
parent 982f847267
commit 8fdf9518cf
2 changed files with 2 additions and 2 deletions

View File

@ -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}>

View File

@ -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>
</>
);