diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-09-26 20:47:11 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-09-26 20:47:11 +0900 |
| commit | b6e33e93dea72844e0efb2a66d0f8faada12ac6c (patch) | |
| tree | 97a4d6b78d56fd01a8de394604e8e3455bb0c177 /src | |
| parent | example commit (diff) | |
| download | sharkey-b6e33e93dea72844e0efb2a66d0f8faada12ac6c.tar.gz sharkey-b6e33e93dea72844e0efb2a66d0f8faada12ac6c.tar.bz2 sharkey-b6e33e93dea72844e0efb2a66d0f8faada12ac6c.zip | |
wip
Diffstat (limited to 'src')
| -rw-r--r-- | src/client/app/mobile/views/pages/settings.vue | 4 | ||||
| -rw-r--r-- | src/client/theme/dark.json | 4 | ||||
| -rw-r--r-- | src/client/theme/light.json | 4 |
3 files changed, 8 insertions, 4 deletions
diff --git a/src/client/app/mobile/views/pages/settings.vue b/src/client/app/mobile/views/pages/settings.vue index 9849c82490..0a44a592e1 100644 --- a/src/client/app/mobile/views/pages/settings.vue +++ b/src/client/app/mobile/views/pages/settings.vue @@ -339,8 +339,8 @@ root(isDark) margin 16px padding 16px text-align center - color isDark ? #ff5f56 : #cc2727 - background isDark ? #652222 : #fff6f5 + color var(--mobileSignedInAsFg) + background var(--mobileSignedInAsBg) box-shadow 0 3px 1px -2px rgba(#000, 0.2), 0 2px 2px 0 rgba(#000, 0.14), 0 1px 5px 0 rgba(#000, 0.12) > footer diff --git a/src/client/theme/dark.json b/src/client/theme/dark.json index f94f3d7f9c..5d0272a375 100644 --- a/src/client/theme/dark.json +++ b/src/client/theme/dark.json @@ -11,5 +11,7 @@ "face": "#282c37", "faceHeader": "#313543", "mobileSignedInAsBg": "#273c34", - "mobileSignedInAsFg": "#49ab63" + "mobileSignedInAsFg": "#49ab63", + "mobileSignoutBg": "#652222", + "mobileSignoutFg": "#ff5f56" } diff --git a/src/client/theme/light.json b/src/client/theme/light.json index 4a3db8a308..4cba3be499 100644 --- a/src/client/theme/light.json +++ b/src/client/theme/light.json @@ -11,5 +11,7 @@ "face": "#fff", "faceHeader": "#fff", "mobileSignedInAsBg": "#fcfff5", - "mobileSignedInAsFg": "#2c662d" + "mobileSignedInAsFg": "#2c662d", + "mobileSignoutBg": "#fff6f5", + "mobileSignoutFg": "#cc2727" } |