diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-12-30 13:19:06 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-12-30 13:19:06 +0900 |
| commit | 12286f49154b0a98a67ae279f8d3bd3949877e08 (patch) | |
| tree | b701e7026b82f2429778e729850079b44288c1a4 /src/client/theme | |
| parent | [Client] Fix i18n (diff) | |
| download | sharkey-12286f49154b0a98a67ae279f8d3bd3949877e08.tar.gz sharkey-12286f49154b0a98a67ae279f8d3bd3949877e08.tar.bz2 sharkey-12286f49154b0a98a67ae279f8d3bd3949877e08.zip | |
:art:
Diffstat (limited to 'src/client/theme')
| -rw-r--r-- | src/client/theme/colorful.json5 | 1 | ||||
| -rw-r--r-- | src/client/theme/dark.json5 | 1 | ||||
| -rw-r--r-- | src/client/theme/gruvbox-dark.json5 | 1 | ||||
| -rw-r--r-- | src/client/theme/light.json5 | 1 | ||||
| -rw-r--r-- | src/client/theme/monokai.json5 | 1 | ||||
| -rw-r--r-- | src/client/theme/natural.json5 | 1 |
6 files changed, 6 insertions, 0 deletions
diff --git a/src/client/theme/colorful.json5 b/src/client/theme/colorful.json5 index 7daa45e219..5b7441e1cf 100644 --- a/src/client/theme/colorful.json5 +++ b/src/client/theme/colorful.json5 @@ -15,6 +15,7 @@ props: { bg: 'rgb(250, 250, 250)', mfmMention: '#f07171', + mfmMentionForeground: '#fff', mfmUrl: '#86b300', mfmLink: '#399ee6', mfmHashtag: '#fa8d3e' diff --git a/src/client/theme/dark.json5 b/src/client/theme/dark.json5 index 6c88090f87..a12ffae540 100644 --- a/src/client/theme/dark.json5 +++ b/src/client/theme/dark.json5 @@ -123,6 +123,7 @@ mfmUrl: '$primary', mfmLink: '@mfmUrl', mfmMention: '$primary', + mfmMentionForeground: '@primaryForeground', mfmHashtag: '$primary', suspendedInfoBg: '#611d1d', diff --git a/src/client/theme/gruvbox-dark.json5 b/src/client/theme/gruvbox-dark.json5 index 65479f90ee..670b2a76d1 100644 --- a/src/client/theme/gruvbox-dark.json5 +++ b/src/client/theme/gruvbox-dark.json5 @@ -17,6 +17,7 @@ renoteText: 'rgb(169, 174, 36)', quoteBorder: 'rgb(169, 174, 36)', mfmMention: 'rgb(177, 98, 134)', + mfmMentionForeground: '#fff', mfmUrl: 'rgb(69, 133, 136)', mfmLink: 'rgb(104, 157, 106)', mfmHashtag: 'rgb(204, 36, 29)' diff --git a/src/client/theme/light.json5 b/src/client/theme/light.json5 index 9e362c99e2..c6a4f860b4 100644 --- a/src/client/theme/light.json5 +++ b/src/client/theme/light.json5 @@ -123,6 +123,7 @@ mfmUrl: '$primary', mfmLink: '@mfmUrl', mfmMention: '$primary', + mfmMentionForeground: '@primaryForeground', mfmHashtag: '$primary', suspendedInfoBg: '#ffdbdb', diff --git a/src/client/theme/monokai.json5 b/src/client/theme/monokai.json5 index 859c1c2340..a949089ba8 100644 --- a/src/client/theme/monokai.json5 +++ b/src/client/theme/monokai.json5 @@ -17,6 +17,7 @@ renoteText: '#a6e22e', quoteBorder: '#a6e22e', mfmMention: '#ae81ff', + mfmMentionForeground: '#fff', mfmUrl: '#66d9ef', mfmLink: '#e6db74', mfmHashtag: '#fd971f' diff --git a/src/client/theme/natural.json5 b/src/client/theme/natural.json5 index 74e9cd7000..956c8dab36 100644 --- a/src/client/theme/natural.json5 +++ b/src/client/theme/natural.json5 @@ -15,6 +15,7 @@ props: { bg: 'rgb(248, 239, 221)', mfmMention: 'rgb(238, 150, 43)', + mfmMentionForeground: '#fff', mfmUrl: 'rgb(0, 189, 214)', mfmLink: 'rgb(255, 87, 146)', mfmHashtag: 'rgb(179, 134, 0)' |