From 75cd580c3adca8dc8de69fdf0d5d023e2b16d38c Mon Sep 17 00:00:00 2001 From: syuilo Date: Sun, 7 Oct 2018 19:30:24 +0900 Subject: [PATCH] Improve theming --- src/client/app/mobile/views/components/post-form.vue | 2 +- src/client/theme/dark.json5 | 1 + src/client/theme/light.json5 | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/client/app/mobile/views/components/post-form.vue b/src/client/app/mobile/views/components/post-form.vue index e4ec1aa57..3de920cf2 100644 --- a/src/client/app/mobile/views/components/post-form.vue +++ b/src/client/app/mobile/views/components/post-form.vue @@ -478,7 +478,7 @@ export default Vue.extend({ width 48px height 48px font-size 20px - color #657786 + color var(--mobilePostFormButton) background transparent outline none border none diff --git a/src/client/theme/dark.json5 b/src/client/theme/dark.json5 index 72362a230..1f4585d14 100644 --- a/src/client/theme/dark.json5 +++ b/src/client/theme/dark.json5 @@ -175,6 +175,7 @@ mobileNavBackdrop: 'rgba(0, 0, 0, 0.7)', mobilePostFormDivider: 'rgba(0, 0, 0, 0.2)', mobilePostFormTextareaBg: 'rgba(0, 0, 0, 0.3)', + mobilePostFormButton: '$text', mobileDriveNavBg: ':alpha<0.75<$secondary', mobileHomeTlItemHover: 'rgba(255, 255, 255, 0.1)', mobileUserPageName: '#fff', diff --git a/src/client/theme/light.json5 b/src/client/theme/light.json5 index 90d0d4018..acb2a6d68 100644 --- a/src/client/theme/light.json5 +++ b/src/client/theme/light.json5 @@ -175,6 +175,7 @@ mobileNavBackdrop: 'rgba(0, 0, 0, 0.2)', mobilePostFormDivider: 'rgba(0, 0, 0, 0.1)', mobilePostFormTextareaBg: '#fff', + mobilePostFormButton: '$text', mobileDriveNavBg: ':alpha<0.75<$secondary', mobileHomeTlItemHover: 'rgba(0, 0, 0, 0.05)', mobileUserPageName: '#757c82',