fix: display maroon theme

This commit is contained in:
아르페 2023-12-15 09:27:50 +09:00
parent f14ab9c8b4
commit e7a572460d
No known key found for this signature in database
GPG key ID: B1EFBBF5C93FF78F

View file

@ -24,7 +24,6 @@ export const themeProps = Object.keys(lightTheme.props).filter(key => !key.start
export const getBuiltinThemes = () => Promise.all(
[
'_light',
'l-blue',
'l-flamingo',
'l-green',
@ -38,8 +37,8 @@ export const getBuiltinThemes = () => Promise.all(
'l-sky',
'l-teal',
'l-yellow',
'l-maroon', // defualt
'_dark',
'd-blue',
'd-flamingo',
'd-green',
@ -53,6 +52,7 @@ export const getBuiltinThemes = () => Promise.all(
'd-sky',
'd-teal',
'd-yellow',
'd-maroon', // default
].map(name => import(`@/themes/${name}.json5`).then(({ default: _default }): Theme => _default)),
);