diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-12-19 00:45:00 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-12-19 00:45:00 +0900 |
| commit | b2f288dcac92412550841d91d40af119e0187e91 (patch) | |
| tree | ea69cbd15b8ee87e884604e434b49aacdc7991e9 /src | |
| parent | [Client] Fix #3655 (diff) | |
| download | misskey-b2f288dcac92412550841d91d40af119e0187e91.tar.gz misskey-b2f288dcac92412550841d91d40af119e0187e91.tar.bz2 misskey-b2f288dcac92412550841d91d40af119e0187e91.zip | |
[Client] Fix #3657
Diffstat (limited to 'src')
| -rw-r--r-- | src/client/app/common/views/components/analog-clock.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/app/common/views/components/analog-clock.vue b/src/client/app/common/views/components/analog-clock.vue index 9766b33cb9..4ba578a1a4 100644 --- a/src/client/app/common/views/components/analog-clock.vue +++ b/src/client/app/common/views/components/analog-clock.vue @@ -75,7 +75,7 @@ export default Vue.extend({ return this.dark ? '#fff' : '#777'; }, hHandColor(): string { - return tinycolor(getComputedStyle(document.documentElement).getPropertyValue('--themeColor')).toHexString(); + return tinycolor(getComputedStyle(document.documentElement).getPropertyValue('--primary')).toHexString(); }, ms(): number { |