From 4ff2d0e5673b9501365e7cede316eecf3d848396 Mon Sep 17 00:00:00 2001 From: ThatOneCalculator Date: Mon, 25 Jul 2022 17:32:25 -0700 Subject: [PATCH] More rose pine stuff --- packages/client/src/components/chart.vue | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/packages/client/src/components/chart.vue b/packages/client/src/components/chart.vue index 10e70bce53..c4706d53d9 100644 --- a/packages/client/src/components/chart.vue +++ b/packages/client/src/components/chart.vue @@ -397,17 +397,17 @@ const fetchApRequestChart = async (): Promise => { series: [{ name: 'In', type: 'area', - color: '#008FFB', + color: '#31748f', data: format(raw.inboxReceived), }, { name: 'Out (succ)', type: 'area', - color: '#00E396', + color: '#c4a7e7', data: format(raw.deliverSucceeded), }, { name: 'Out (fail)', type: 'area', - color: '#FEB019', + color: '#f6c177', data: format(raw.deliverFailed), }], }; @@ -636,17 +636,17 @@ const fetchInstanceRequestsChart = async (): Promise => { series: [{ name: 'In', type: 'area', - color: '#008FFB', + color: '#31748f', data: format(raw.requests.received), }, { name: 'Out (succ)', type: 'area', - color: '#00E396', + color: '#c4a7e7', data: format(raw.requests.succeeded), }, { name: 'Out (fail)', type: 'area', - color: '#FEB019', + color: '#f6c177', data: format(raw.requests.failed), }], }; @@ -658,7 +658,7 @@ const fetchInstanceUsersChart = async (total: boolean): Promise = series: [{ name: 'Following', type: 'area', - color: '#008FFB', + color: '#31748f', data: format(total ? raw.following.total : sum(raw.following.inc, negate(raw.following.dec)), @@ -696,7 +696,7 @@ const fetchInstanceFfChart = async (total: boolean): Promise = }, { name: 'Followers', type: 'area', - color: '#00E396', + color: '#c4a7e7', data: format(total ? raw.followers.total : sum(raw.followers.inc, negate(raw.followers.dec)), @@ -712,7 +712,7 @@ const fetchInstanceDriveUsageChart = async (total: boolean): Promise