enhance(client): add some themes

This commit is contained in:
syuilo
2022-07-22 00:25:56 +09:00
parent 9ed6a9701a
commit 035ec0a874
3 changed files with 177 additions and 0 deletions

View File

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