diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-12-31 01:15:32 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-12-31 01:15:32 +0900 |
| commit | 5692ae59a14cfed1ac87047a8cc2da8e2591a0df (patch) | |
| tree | 7ff822b6027f5315d51516486d48d4426c160ab6 /src/client/theme | |
| parent | [Client] line thiknessの設定はデバイスに保存するように (diff) | |
| download | sharkey-5692ae59a14cfed1ac87047a8cc2da8e2591a0df.tar.gz sharkey-5692ae59a14cfed1ac87047a8cc2da8e2591a0df.tar.bz2 sharkey-5692ae59a14cfed1ac87047a8cc2da8e2591a0df.zip | |
[Client] Improve theming :art:
Diffstat (limited to 'src/client/theme')
| -rw-r--r-- | src/client/theme/dark.json5 | 2 | ||||
| -rw-r--r-- | src/client/theme/gruvbox-dark.json5 | 3 | ||||
| -rw-r--r-- | src/client/theme/light.json5 | 2 | ||||
| -rw-r--r-- | src/client/theme/monokai.json5 | 3 |
4 files changed, 8 insertions, 2 deletions
diff --git a/src/client/theme/dark.json5 b/src/client/theme/dark.json5 index a12ffae540..fe85e94d64 100644 --- a/src/client/theme/dark.json5 +++ b/src/client/theme/dark.json5 @@ -24,6 +24,8 @@ scrollbarHandle: ':lighten<5<$secondary', scrollbarHandleHover: ':lighten<10<$secondary', + notificationIndicator: '$primary', + face: '$secondary', faceText: '#fff', faceHeader: ':lighten<5<$secondary', diff --git a/src/client/theme/gruvbox-dark.json5 b/src/client/theme/gruvbox-dark.json5 index 93fea40638..629f0a3fdb 100644 --- a/src/client/theme/gruvbox-dark.json5 +++ b/src/client/theme/gruvbox-dark.json5 @@ -20,6 +20,7 @@ mfmMentionForeground: '#fff', mfmUrl: 'rgb(69, 133, 136)', mfmLink: 'rgb(104, 157, 106)', - mfmHashtag: 'rgb(251, 73, 52)' + mfmHashtag: 'rgb(251, 73, 52)', + notificationIndicator: 'rgb(184, 187, 38)', }, } diff --git a/src/client/theme/light.json5 b/src/client/theme/light.json5 index c6a4f860b4..876306b16d 100644 --- a/src/client/theme/light.json5 +++ b/src/client/theme/light.json5 @@ -24,6 +24,8 @@ scrollbarHandle: '#00000033', scrollbarHandleHover: '#00000066', + notificationIndicator: '$primary', + face: '$secondary', faceText: '$text', faceHeader: ':lighten<5<$secondary', diff --git a/src/client/theme/monokai.json5 b/src/client/theme/monokai.json5 index a949089ba8..6ee0f875a6 100644 --- a/src/client/theme/monokai.json5 +++ b/src/client/theme/monokai.json5 @@ -20,6 +20,7 @@ mfmMentionForeground: '#fff', mfmUrl: '#66d9ef', mfmLink: '#e6db74', - mfmHashtag: '#fd971f' + mfmHashtag: '#fd971f', + notificationIndicator: '#66d9ef', }, } |