From f2863b6e5d6c77049e955c0ed2f244dc519ed5f1 Mon Sep 17 00:00:00 2001 From: NoriDev Date: Thu, 20 Jul 2023 17:22:32 +0900 Subject: [PATCH] chore 302c1db1 --- CHANGELOG_CHERRYPICK.md | 2 ++ packages/frontend/src/scripts/theme.ts | 6 ++++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG_CHERRYPICK.md b/CHANGELOG_CHERRYPICK.md index 3c7a9f6fc8..4217036db8 100644 --- a/CHANGELOG_CHERRYPICK.md +++ b/CHANGELOG_CHERRYPICK.md @@ -41,6 +41,8 @@ - 초대 코드 해지 기능을 새 버전에 맞게 개선 - 리모트 캐시 파일을 별도의 Object Storage에 저장하도록 설정 ([libnare/mk-castella@0d93433](https://github.com/libnare/mk-castella/commit/0d93433b0836238f518658b5719ce335060963b0)) - Byeolvit 테마 추가 ([Luminon/Byeolvit-Theme](https://github.com/Luminon/Byeolvit-Theme), [libnare/mk-castella@3c95399](https://github.com/libnare/mk-castella/commit/3c95399d0989015bb92836e48d010df07619038b)) +- buttersc.one 테마 추가 ([libnare/mk-castella@6f15fa1](https://github.com/libnare/mk-castella/commit/6f15fa10b8022d0830254b8f615153d11c441480)) +- Byeolvit 테마 추가 ([Luminon/Byeolvit-Theme](https://github.com/Luminon/Byeolvit-Theme), [libnare/mk-castella@3c95399](https://github.com/libnare/mk-castella/commit/3c95399d0989015bb92836e48d010df07619038b)) ### Client - 리노트 전 확인 팝업을 띄움 diff --git a/packages/frontend/src/scripts/theme.ts b/packages/frontend/src/scripts/theme.ts index 47c85bf268..9171bc2c61 100644 --- a/packages/frontend/src/scripts/theme.ts +++ b/packages/frontend/src/scripts/theme.ts @@ -21,6 +21,8 @@ export const themeProps = Object.keys(lightTheme.props).filter(key => !key.start export const getBuiltinThemes = () => Promise.all( [ 'l-cherrypick', + 'l-byeolvit-polaris', + 'l-scone-color', 'l-light', 'l-coffee', 'l-apricot', @@ -31,9 +33,10 @@ export const getBuiltinThemes = () => Promise.all( 'l-sushi', 'l-u0', 'l-birdsite', - 'l-byeolvit-polaris', 'd-cherrypick', + 'd-byeolvit-noctiluca', + 'd-scone-color', 'd-dark', 'd-persimmon', 'd-astro', @@ -46,7 +49,6 @@ export const getBuiltinThemes = () => Promise.all( 'd-u0', 'd-qdon', 'd-birdsite', - 'd-byeolvit-noctiluca', ].map(name => import(`../themes/${name}.json5`).then(({ default: _default }): Theme => _default)), );