mirror of
https://github.com/upscayl/upscayl.git
synced 2024-11-28 01:10: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">
|
<div className="flex flex-col gap-2">
|
||||||
<p className="text-sm font-medium">UPSCAYL THEME</p>
|
<p className="text-sm font-medium">UPSCAYL THEME</p>
|
||||||
<select data-choose-theme className="select-primary select">
|
<select data-choose-theme className="select-primary select">
|
||||||
<option value="dark">Default</option>
|
<option value="upscayl">Default</option>
|
||||||
{availableThemes.map((theme) => {
|
{availableThemes.map((theme) => {
|
||||||
return (
|
return (
|
||||||
<option value={theme.value} key={theme.value}>
|
<option value={theme.value} key={theme.value}>
|
||||||
|
@ -11,7 +11,7 @@ const MyApp = ({ Component, pageProps }: AppProps) => {
|
|||||||
<title>Upscayl</title>
|
<title>Upscayl</title>
|
||||||
</Head>
|
</Head>
|
||||||
<Provider>
|
<Provider>
|
||||||
<Component {...pageProps} data-theme="dark" />
|
<Component {...pageProps} data-theme="upscayl" />
|
||||||
</Provider>
|
</Provider>
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
|
Loading…
Reference in New Issue
Block a user