mirror of
https://github.com/kunkunsh/kunkun.git
synced 2025-04-11 17:29:44 +00:00
feat(desktop): hardcode theme to be dark, in order for transparent bg to look good
This commit is contained in:
parent
cfaded3a6e
commit
be073a0926
@ -70,7 +70,12 @@ function createAppConfig(): WithSyncStore<AppConfig & { language: string }> & Ap
|
||||
store.subscribe(async (config) => {
|
||||
console.log("Saving app config", config)
|
||||
await persistStore.set("config", config)
|
||||
updateTheme(config.theme)
|
||||
updateTheme({
|
||||
theme: "neutral",
|
||||
radius: 0.5,
|
||||
lightMode: "dark"
|
||||
})
|
||||
// updateTheme(config.theme)
|
||||
})
|
||||
}
|
||||
|
||||
|
@ -137,7 +137,7 @@
|
||||
|
||||
<DropdownMenu.Root>
|
||||
<DropdownMenu.Trigger>
|
||||
<Button variant="outline" size="icon"><EllipsisVerticalIcon /></Button>
|
||||
<Button variant="outline" size="icon" class=" bg-background/50"><EllipsisVerticalIcon /></Button>
|
||||
</DropdownMenu.Trigger>
|
||||
<DropdownMenu.Content class="w-80">
|
||||
<DropdownMenu.Group>
|
||||
|
Loading…
x
Reference in New Issue
Block a user