forked from FoundKeyGang/FoundKey
🎨
This commit is contained in:
parent
fd3ce321c5
commit
720d5db041
4 changed files with 44 additions and 0 deletions
|
@ -20,6 +20,7 @@ export const builtinThemes = [
|
||||||
require('@/themes/l-apricot.json5'),
|
require('@/themes/l-apricot.json5'),
|
||||||
require('@/themes/l-rainy.json5'),
|
require('@/themes/l-rainy.json5'),
|
||||||
require('@/themes/l-vivid.json5'),
|
require('@/themes/l-vivid.json5'),
|
||||||
|
require('@/themes/l-cherry.json5'),
|
||||||
require('@/themes/l-sushi.json5'),
|
require('@/themes/l-sushi.json5'),
|
||||||
|
|
||||||
require('@/themes/d-dark.json5'),
|
require('@/themes/d-dark.json5'),
|
||||||
|
@ -27,6 +28,7 @@ export const builtinThemes = [
|
||||||
require('@/themes/d-astro.json5'),
|
require('@/themes/d-astro.json5'),
|
||||||
require('@/themes/d-future.json5'),
|
require('@/themes/d-future.json5'),
|
||||||
require('@/themes/d-botanical.json5'),
|
require('@/themes/d-botanical.json5'),
|
||||||
|
require('@/themes/d-cherry.json5'),
|
||||||
require('@/themes/d-pumpkin.json5'),
|
require('@/themes/d-pumpkin.json5'),
|
||||||
require('@/themes/d-black.json5'),
|
require('@/themes/d-black.json5'),
|
||||||
] as Theme[];
|
] as Theme[];
|
||||||
|
|
20
packages/client/src/themes/d-cherry.json5
Normal file
20
packages/client/src/themes/d-cherry.json5
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
id: '679b3b87-a4e9-4789-8696-b56c15cc33b0',
|
||||||
|
|
||||||
|
name: 'Mi Cherry Dark',
|
||||||
|
author: 'syuilo',
|
||||||
|
|
||||||
|
base: 'dark',
|
||||||
|
|
||||||
|
props: {
|
||||||
|
accent: 'rgb(255, 89, 117)',
|
||||||
|
bg: 'rgb(28, 28, 37)',
|
||||||
|
fg: 'rgb(236, 239, 244)',
|
||||||
|
panel: 'rgb(35, 35, 47)',
|
||||||
|
renote: '@accent',
|
||||||
|
link: '@accent',
|
||||||
|
mention: '@accent',
|
||||||
|
hashtag: '@accent',
|
||||||
|
divider: 'rgb(63, 63, 80)',
|
||||||
|
},
|
||||||
|
}
|
21
packages/client/src/themes/l-cherry.json5
Normal file
21
packages/client/src/themes/l-cherry.json5
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
{
|
||||||
|
id: 'ac168876-f737-4074-a3fc-a370c732ef48',
|
||||||
|
|
||||||
|
name: 'Mi Cherry Light',
|
||||||
|
author: 'syuilo',
|
||||||
|
|
||||||
|
base: 'light',
|
||||||
|
|
||||||
|
props: {
|
||||||
|
accent: 'rgb(219, 96, 114)',
|
||||||
|
bg: 'rgb(254, 248, 249)',
|
||||||
|
fg: 'rgb(152, 13, 26)',
|
||||||
|
panel: 'rgb(255, 255, 255)',
|
||||||
|
renote: '@accent',
|
||||||
|
link: 'rgb(156, 187, 5)',
|
||||||
|
mention: '@accent',
|
||||||
|
hashtag: '@accent',
|
||||||
|
divider: 'rgba(134, 51, 51, 0.1)',
|
||||||
|
inputBorderHover: 'rgb(238, 221, 222)',
|
||||||
|
},
|
||||||
|
}
|
|
@ -347,6 +347,7 @@ const wallpaper = localStorage.getItem('wallpaper') != null;
|
||||||
-webkit-backdrop-filter: var(--blur, blur(32px));
|
-webkit-backdrop-filter: var(--blur, blur(32px));
|
||||||
backdrop-filter: var(--blur, blur(32px));
|
backdrop-filter: var(--blur, blur(32px));
|
||||||
background-color: var(--header);
|
background-color: var(--header);
|
||||||
|
border-top: solid 0.5px var(--divider);
|
||||||
|
|
||||||
> .button {
|
> .button {
|
||||||
position: relative;
|
position: relative;
|
||||||
|
|
Loading…
Reference in a new issue