diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2020-02-15 08:29:59 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2020-02-15 08:29:59 +0900 |
| commit | 37c80e8ef50c833f30fc96635ff8317155a79a45 (patch) | |
| tree | a3765cbf892205b6d293dd4853fbaae9d1266e51 /src/client/theme.ts | |
| parent | :art: (diff) | |
| download | sharkey-37c80e8ef50c833f30fc96635ff8317155a79a45.tar.gz sharkey-37c80e8ef50c833f30fc96635ff8317155a79a45.tar.bz2 sharkey-37c80e8ef50c833f30fc96635ff8317155a79a45.zip | |
Improve wallpaper feature
Diffstat (limited to 'src/client/theme.ts')
| -rw-r--r-- | src/client/theme.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/theme.ts b/src/client/theme.ts index 3ece30d47e..c446528f06 100644 --- a/src/client/theme.ts +++ b/src/client/theme.ts @@ -9,8 +9,8 @@ export type Theme = { props: { [key: string]: string }; }; -export const lightTheme: Theme = require('./themes/light.json5'); -export const darkTheme: Theme = require('./themes/dark.json5'); +export const lightTheme: Theme = require('./themes/_light.json5'); +export const darkTheme: Theme = require('./themes/_dark.json5'); export const builtinThemes = [ lightTheme, |