From e2be93673a2b1857e92d771a2e99fe9ce59fb888 Mon Sep 17 00:00:00 2001 From: Igor Kamyshev Date: Thu, 11 Apr 2019 23:18:52 +0300 Subject: [PATCH] fix: fix green by material pallete --- front/src/ui/components/chart/bar-chart/helpers/getColor.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/front/src/ui/components/chart/bar-chart/helpers/getColor.ts b/front/src/ui/components/chart/bar-chart/helpers/getColor.ts index 13c5703f..8cf98f0d 100644 --- a/front/src/ui/components/chart/bar-chart/helpers/getColor.ts +++ b/front/src/ui/components/chart/bar-chart/helpers/getColor.ts @@ -1,6 +1,6 @@ import Color from 'color' -const colors = ['#00D43C', '#FFC107', '#673AB7', '#F44336'] +const colors = ['#4CAF50', '#FFC107', '#673AB7', '#F44336'] export const getColor = (index: number) => Color(colors[index])