Mireradoテーマ追加

This commit is contained in:
NoriDev 2023-10-12 21:09:41 +09:00
parent 9f7b89fa3f
commit 29868aaa3f
5 changed files with 74 additions and 3 deletions

View file

@ -36,6 +36,7 @@ Misskey의 전체 변경 사항을 확인하려면, [CHANGELOG.md#2023xx](CHANGE
- Misskey 2023.10.0 에서 제거된 노트 편집 기능이 계속 유지됩니다. - Misskey 2023.10.0 에서 제거된 노트 편집 기능이 계속 유지됩니다.
### General ### General
- Add: Mirerado 테마 추가 ([mirerado-theme](https://mi.rerac.dev/@notify/pages/mirerado-theme))
- Feat: 읽지 않은 알림 수를 표시할 수 있음 (misskey-dev/misskey#11982) - Feat: 읽지 않은 알림 수를 표시할 수 있음 (misskey-dev/misskey#11982)
- Feat: 햅틱 피드백 개선 - Feat: 햅틱 피드백 개선
- 지원 범위 추가 - 지원 범위 추가

View file

@ -10,6 +10,12 @@ const keys = [
'_dark', '_dark',
'_light', '_light',
'l-cherrypick', 'l-cherrypick',
'l-rosepinedawn',
'l-mirerado',
'l-byeolvit-polaris',
'l-scone-color',
'l-stella-r2',
'l-birdsite',
'l-light', 'l-light',
'l-coffee', 'l-coffee',
'l-apricot', 'l-apricot',
@ -20,6 +26,14 @@ const keys = [
'l-sushi', 'l-sushi',
'l-u0', 'l-u0',
'd-cherrypick', 'd-cherrypick',
'd-rosepine',
'd-rosepinemoon',
'd-mirerado',
'd-byeolvit-noctiluca',
'd-scone-color',
'd-stella-r2',
'd-qdon',
'd-birdsite',
'd-dark', 'd-dark',
'd-persimmon', 'd-persimmon',
'd-astro', 'd-astro',

View file

@ -26,9 +26,11 @@ export const getBuiltinThemes = () => Promise.all(
[ [
'l-cherrypick', 'l-cherrypick',
'l-rosepinedawn', 'l-rosepinedawn',
'l-mirerado',
'l-byeolvit-polaris', 'l-byeolvit-polaris',
'l-scone-color', 'l-scone-color',
'l-stella-r2', 'l-stella-r2',
'l-birdsite',
'l-light', 'l-light',
'l-coffee', 'l-coffee',
'l-apricot', 'l-apricot',
@ -38,14 +40,16 @@ export const getBuiltinThemes = () => Promise.all(
'l-cherry', 'l-cherry',
'l-sushi', 'l-sushi',
'l-u0', 'l-u0',
'l-birdsite',
'd-cherrypick', 'd-cherrypick',
'd-rosepine', 'd-rosepine',
'd-rosepinemoon', 'd-rosepinemoon',
'd-mirerado',
'd-byeolvit-noctiluca', 'd-byeolvit-noctiluca',
'd-scone-color', 'd-scone-color',
'd-stella-r2', 'd-stella-r2',
'd-qdon',
'd-birdsite',
'd-dark', 'd-dark',
'd-persimmon', 'd-persimmon',
'd-astro', 'd-astro',
@ -56,8 +60,6 @@ export const getBuiltinThemes = () => Promise.all(
'd-cherry', 'd-cherry',
'd-ice', 'd-ice',
'd-u0', 'd-u0',
'd-qdon',
'd-birdsite',
].map(name => import(`../themes/${name}.json5`).then(({ default: _default }): Theme => _default)), ].map(name => import(`../themes/${name}.json5`).then(({ default: _default }): Theme => _default)),
); );

View file

@ -0,0 +1,27 @@
{
id: 'a8cb5be7-cac8-4aa4-8ec1-c9cc582949ae',
base: 'dark',
name: 'Mirerado Neptune',
author: 'qua.',
desc: '미래를 향하는 꼬마전구, MireRado의 디폴트 다크 테마에요.',
props: {
bg: '#14131B',
fg: 'rgb(228, 228, 228)',
link: 'rgb(0, 176, 244)',
navBg: '#20202C',
navFg: '#D8DAEC',
panel: '#20202C',
accent: '#666DFE',
header: '#20202C',
renote: '#666DFE',
hashtag: '@accent',
mention: '@accent',
navActive: '#ffffff',
navHoverFg: '#dcddde',
fgHighlighted: '#ffffff',
scrollbarHandle: '#20202C',
cwBg: '#2a2b4b',
cwFg: '#dcddde',
},
}

View file

@ -0,0 +1,27 @@
{
id: '90b3d615-ce4e-416d-82ae-cc11a1228403',
base: 'light',
name: 'Mirerado Uranus',
author: 'qua.',
desc: '미래를 향하는 꼬마전구, MireRado의 디폴트 라이트 테마에요.',
props: {
bg: '#EAEAEE',
fg: '#4E4E5E',
link: 'rgb(0, 176, 244)',
navBg: '#FAFBFC',
navFg: '#111111',
panel: '#FAFBFC',
accent: '#666DFE',
header: '#FAFBFC',
renote: '#999DFE',
hashtag: '@accent',
mention: '@accent',
navActive: '#111111',
navHoverFg: '#dcddde',
fgHighlighted: '#ffffff',
scrollbarHandle: '#d7d7e1',
cwBg: '#e4e6fc',
cwFg: '#4E4E5E',
},
}