diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2020-02-17 07:14:03 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2020-02-17 07:14:03 +0900 |
| commit | b09b74b5da1c53082f6bbab286eddd4e93edfbf6 (patch) | |
| tree | cafecab19bd03d98ddaea5e16a717750038b89f7 /src/client | |
| parent | Fix glitch (diff) | |
| download | sharkey-b09b74b5da1c53082f6bbab286eddd4e93edfbf6.tar.gz sharkey-b09b74b5da1c53082f6bbab286eddd4e93edfbf6.tar.bz2 sharkey-b09b74b5da1c53082f6bbab286eddd4e93edfbf6.zip | |
:art:
Diffstat (limited to 'src/client')
| -rw-r--r-- | src/client/app.vue | 2 | ||||
| -rw-r--r-- | src/client/components/menu.vue | 2 | ||||
| -rw-r--r-- | src/client/pages/index.home.vue | 2 | ||||
| -rw-r--r-- | src/client/themes/_dark.json5 | 1 | ||||
| -rw-r--r-- | src/client/themes/_light.json5 | 1 |
5 files changed, 5 insertions, 3 deletions
diff --git a/src/client/app.vue b/src/client/app.vue index d612644ccb..ce92d81b1b 100644 --- a/src/client/app.vue +++ b/src/client/app.vue @@ -1197,7 +1197,7 @@ export default Vue.extend({ position: absolute; top: 0; left: 0; - color: var(--accent); + color: var(--indicator); font-size: 16px; animation: blink 1s infinite; } diff --git a/src/client/components/menu.vue b/src/client/components/menu.vue index 303cf6ad89..6fee809c40 100644 --- a/src/client/components/menu.vue +++ b/src/client/components/menu.vue @@ -176,7 +176,7 @@ export default Vue.extend({ position: absolute; top: 5px; left: 13px; - color: var(--accent); + color: var(--indicator); font-size: 12px; animation: blink 1s infinite; } diff --git a/src/client/pages/index.home.vue b/src/client/pages/index.home.vue index c2bd187e80..f42dfe3daa 100644 --- a/src/client/pages/index.home.vue +++ b/src/client/pages/index.home.vue @@ -184,7 +184,7 @@ export default Vue.extend({ position: absolute; top: 16px; right: 8px; - color: var(--accent); + color: var(--indicator); font-size: 12px; animation: blink 1s infinite; } diff --git a/src/client/themes/_dark.json5 b/src/client/themes/_dark.json5 index 4acea0a4b2..5f30d2141b 100644 --- a/src/client/themes/_dark.json5 +++ b/src/client/themes/_dark.json5 @@ -16,6 +16,7 @@ fg: '#c7d1d8', fgHighlighted: ':lighten<3<@fg', html: '@bg', + indicator: '@accent', panel: '#111213', shadow: 'rgba(0, 0, 0, 0.1)', header: 'rgba(20, 20, 20, 0.75)', diff --git a/src/client/themes/_light.json5 b/src/client/themes/_light.json5 index b891cc5e69..2b411fb28d 100644 --- a/src/client/themes/_light.json5 +++ b/src/client/themes/_light.json5 @@ -16,6 +16,7 @@ fg: '#5c6a73', fgHighlighted: ':darken<3<@fg', html: '@bg', + indicator: '@accent', panel: '#fff', shadow: 'rgba(0, 0, 0, 0.1)', header: 'rgba(255, 255, 255, 0.75)', |