summaryrefslogtreecommitdiff
path: root/packages/client/src/scripts
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2022-07-22 00:25:56 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2022-07-22 00:25:56 +0900
commit035ec0a87467529a51b954ed61e82c6048729c6a (patch)
tree8abf5f9ced3a13745c464cbd849ab79458447565 /packages/client/src/scripts
parentfix(client): MiAuth page is broken (diff)
downloadsharkey-035ec0a87467529a51b954ed61e82c6048729c6a.tar.gz
sharkey-035ec0a87467529a51b954ed61e82c6048729c6a.tar.bz2
sharkey-035ec0a87467529a51b954ed61e82c6048729c6a.zip
enhance(client): add some themes
Diffstat (limited to 'packages/client/src/scripts')
-rw-r--r--packages/client/src/scripts/theme.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/client/src/scripts/theme.ts b/packages/client/src/scripts/theme.ts
index 77d1df0826..02ac77b59d 100644
--- a/packages/client/src/scripts/theme.ts
+++ b/packages/client/src/scripts/theme.ts
@@ -25,6 +25,7 @@ export const getBuiltinThemes = () => Promise.all(
'l-vivid',
'l-cherry',
'l-sushi',
+ 'l-u0',
'd-dark',
'd-persimmon',
@@ -35,6 +36,7 @@ export const getBuiltinThemes = () => Promise.all(
'd-green-orange',
'd-cherry',
'd-ice',
+ 'd-u0',
].map(name => import(`../themes/${name}.json5`).then(({ default: _default }): Theme => _default)),
);