diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-12-30 09:21:07 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-12-30 09:21:07 +0900 |
| commit | fcb3ba9947f35b5233d4747f0d2b64f00be0e95f (patch) | |
| tree | 876baf36023a55b6d13a3ea4086f3c7a1b467efc /src/client/theme | |
| parent | [Client] Fix bug (diff) | |
| download | sharkey-fcb3ba9947f35b5233d4747f0d2b64f00be0e95f.tar.gz sharkey-fcb3ba9947f35b5233d4747f0d2b64f00be0e95f.tar.bz2 sharkey-fcb3ba9947f35b5233d4747f0d2b64f00be0e95f.zip | |
[Client] Separate theme property
Diffstat (limited to 'src/client/theme')
| -rw-r--r-- | src/client/theme/dark.json5 | 3 | ||||
| -rw-r--r-- | src/client/theme/light.json5 | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/src/client/theme/dark.json5 b/src/client/theme/dark.json5 index 4445fe5c49..6c88090f87 100644 --- a/src/client/theme/dark.json5 +++ b/src/client/theme/dark.json5 @@ -120,7 +120,8 @@ mfmTitleBg: 'rgba(0, 0, 0, 0.2)', mfmQuote: ':alpha<0.7<$text', mfmQuoteLine: ':alpha<0.6<$text', - mfmLink: '$primary', + mfmUrl: '$primary', + mfmLink: '@mfmUrl', mfmMention: '$primary', mfmHashtag: '$primary', diff --git a/src/client/theme/light.json5 b/src/client/theme/light.json5 index 182efee234..9e362c99e2 100644 --- a/src/client/theme/light.json5 +++ b/src/client/theme/light.json5 @@ -120,7 +120,8 @@ mfmTitleBg: 'rgba(0, 0, 0, 0.07)', mfmQuote: ':alpha<0.6<$text', mfmQuoteLine: ':alpha<0.5<$text', - mfmLink: '$primary', + mfmUrl: '$primary', + mfmLink: '@mfmUrl', mfmMention: '$primary', mfmHashtag: '$primary', |