diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2022-07-10 15:36:02 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2022-07-10 15:36:02 +0900 |
| commit | bbe4824955d1533c8a466e791a269f30f1586a57 (patch) | |
| tree | e90196a1005e22d4343f1d13bd7233524949eb01 /packages/client/src/scripts | |
| parent | Merge branch 'develop' of https://github.com/misskey-dev/misskey into develop (diff) | |
| download | sharkey-bbe4824955d1533c8a466e791a269f30f1586a57.tar.gz sharkey-bbe4824955d1533c8a466e791a269f30f1586a57.tar.bz2 sharkey-bbe4824955d1533c8a466e791a269f30f1586a57.zip | |
enhance(client): update themes
Diffstat (limited to 'packages/client/src/scripts')
| -rw-r--r-- | packages/client/src/scripts/theme.ts | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/packages/client/src/scripts/theme.ts b/packages/client/src/scripts/theme.ts index dec9fb355c..eb82044b32 100644 --- a/packages/client/src/scripts/theme.ts +++ b/packages/client/src/scripts/theme.ts @@ -1,6 +1,6 @@ import { ref } from 'vue'; -import { globalEvents } from '@/events'; import tinycolor from 'tinycolor2'; +import { globalEvents } from '@/events'; export type Theme = { id: string; @@ -31,11 +31,11 @@ export const getBuiltinThemes = () => Promise.all( 'd-astro', 'd-future', 'd-botanical', + 'd-lime-green', + 'd-orange-green', 'd-cherry', 'd-ice', - 'd-pumpkin', - 'd-black', - ].map(name => import(`../themes/${name}.json5`).then(({ default: _default }): Theme => _default)) + ].map(name => import(`../themes/${name}.json5`).then(({ default: _default }): Theme => _default)), ); export const getBuiltinThemesRef = () => { |