From e6a24f815baf6f62b5e564383773d199272d5797 Mon Sep 17 00:00:00 2001 From: AlxdrPolyakov <122611538+AlxdrPolyakov@users.noreply.github.com> Date: Wed, 6 Mar 2024 13:40:19 +0000 Subject: [PATCH] Update plotting_time.py --- wise_pizza/plotting_time.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/wise_pizza/plotting_time.py b/wise_pizza/plotting_time.py index 767b008..8969849 100644 --- a/wise_pizza/plotting_time.py +++ b/wise_pizza/plotting_time.py @@ -381,7 +381,7 @@ def simple_ts_plot( x=time, y=totals * mult, name=f"Actuals", - marker=dict(color="#ffc091"), + marker=dict(color="#9fe870"), showlegend=showlegend and col == col_nums[0], ), row=row_num, @@ -394,7 +394,7 @@ def simple_ts_plot( y=reg_totals * mult, mode="lines", name=f"Regression", - line=dict(color="#a0e1e1"), + line=dict(color="#485cc7"), showlegend=showlegend and col == col_nums[0], ), row=row_num, @@ -411,7 +411,7 @@ def simple_ts_plot( y=impact, mode="lines", name=f"Segment's reg contribution (Right axis)", - line=dict(color="#9fe870"), + line=dict(color="darkorange"), showlegend=showlegend and col == col_nums[0], ), row=row_num,