From f50dd5d677cacf0ebc24857e20263c223b190627 Mon Sep 17 00:00:00 2001
From: syuilo <Syuilotan@yahoo.co.jp>
Date: Tue, 8 Feb 2022 23:15:43 +0900
Subject: [PATCH] :art:

---
 packages/client/src/components/chart.vue | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/packages/client/src/components/chart.vue b/packages/client/src/components/chart.vue
index 5e96429e80..2b63b5c3e3 100644
--- a/packages/client/src/components/chart.vue
+++ b/packages/client/src/components/chart.vue
@@ -512,34 +512,42 @@ export default defineComponent({
 					name: 'Users',
 					type: 'area',
 					data: format(raw.users),
+					color: '#888888',
 				}, {
 					name: 'Noted',
 					type: 'area',
 					data: format(raw.notedUsers),
+					color: colors.blue,
 				}, {
 					name: '< Week',
 					type: 'area',
 					data: format(raw.registeredWithinWeek),
+					color: colors.green,
 				}, {
 					name: '< Month',
 					type: 'area',
 					data: format(raw.registeredWithinMonth),
+					color: colors.yellow,
 				}, {
 					name: '< Year',
 					type: 'area',
 					data: format(raw.registeredWithinYear),
+					color: colors.red,
 				}, {
 					name: '> Week',
 					type: 'area',
 					data: format(raw.registeredOutsideWeek),
+					color: colors.yellow,
 				}, {
 					name: '> Month',
 					type: 'area',
 					data: format(raw.registeredOutsideMonth),
+					color: colors.red,
 				}, {
 					name: '> Year',
 					type: 'area',
 					data: format(raw.registeredOutsideYear),
+					color: colors.purple,
 				}],
 			};
 		};