From abf9e92c566e5bcf42fa2069430922cabeae08da Mon Sep 17 00:00:00 2001 From: leandrofars Date: Wed, 8 May 2024 20:44:39 -0300 Subject: [PATCH] fix(frontend): dashboard vendors colors --- frontend/src/sections/overview/overview-traffic.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/frontend/src/sections/overview/overview-traffic.js b/frontend/src/sections/overview/overview-traffic.js index 7a98f13..19b05a3 100644 --- a/frontend/src/sections/overview/overview-traffic.js +++ b/frontend/src/sections/overview/overview-traffic.js @@ -72,7 +72,9 @@ const useChartOptions = (labels,title) => { options.colors = [ theme.palette.primary.main, theme.palette.info.main, - theme.palette.warning.main + theme.palette.warning.main, + theme.palette.graphics.lightest, + theme.palette.graphics.light, ] } return options