summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2021-10-14 01:25:19 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2021-10-14 01:25:19 +0900
commit23de45cea5b84b26c352836a12d33c46210dc0fc (patch)
treede367d4166f609e2cce67539acf3feacca637241 /src
parentfix(api): 管理者およびモデレーターをブロックできてしま... (diff)
downloadsharkey-23de45cea5b84b26c352836a12d33c46210dc0fc.tar.gz
sharkey-23de45cea5b84b26c352836a12d33c46210dc0fc.tar.bz2
sharkey-23de45cea5b84b26c352836a12d33c46210dc0fc.zip
feat(client): add new theme
Diffstat (limited to 'src')
-rw-r--r--src/client/scripts/theme.ts1
-rw-r--r--src/client/themes/d-botanical.json526
2 files changed, 27 insertions, 0 deletions
diff --git a/src/client/scripts/theme.ts b/src/client/scripts/theme.ts
index 10842b8943..9f165f7998 100644
--- a/src/client/scripts/theme.ts
+++ b/src/client/scripts/theme.ts
@@ -25,6 +25,7 @@ export const builtinThemes = [
require('@client/themes/d-persimmon.json5'),
require('@client/themes/d-astro.json5'),
require('@client/themes/d-future.json5'),
+ require('@client/themes/d-botanical.json5'),
require('@client/themes/d-black.json5'),
] as Theme[];
diff --git a/src/client/themes/d-botanical.json5 b/src/client/themes/d-botanical.json5
new file mode 100644
index 0000000000..f3665e22b2
--- /dev/null
+++ b/src/client/themes/d-botanical.json5
@@ -0,0 +1,26 @@
+{
+ id: '504debaf-4912-6a4c-5059-1db08a76b737',
+
+ name: 'Mi Botanical Dark',
+ author: 'syuilo',
+
+ base: 'dark',
+
+ props: {
+ accent: 'rgb(148, 179, 0)',
+ bg: 'rgb(37, 38, 36)',
+ fg: 'rgb(216, 212, 199)',
+ fgHighlighted: '#fff',
+ divider: 'rgba(255, 255, 255, 0.14)',
+ panel: 'rgb(47, 47, 44)',
+ panelHeaderBg: '@panel',
+ panelHeaderDivider: '@divider',
+ header: ':alpha<0.7<@panel',
+ navBg: '#363636',
+ renote: '@accent',
+ mention: 'rgb(212, 153, 76)',
+ mentionMe: 'rgb(212, 210, 76)',
+ hashtag: 'rgb(76, 212, 180)',
+ link: '@accent',
+ },
+}