From d163000977407304fc4f71d86e70cd851798843a Mon Sep 17 00:00:00 2001 From: arshm06 <86798767+arshm06@users.noreply.github.com> Date: Wed, 13 Sep 2023 05:39:01 -0400 Subject: [PATCH] use theme colors and change styling (#2271) Co-authored-by: lilvegan <86798767+lilvegan@users.noreply.github.com> --- arviz/plots/backends/matplotlib/lmplot.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/arviz/plots/backends/matplotlib/lmplot.py b/arviz/plots/backends/matplotlib/lmplot.py index fff2679d48..f43c60cbdd 100644 --- a/arviz/plots/backends/matplotlib/lmplot.py +++ b/arviz/plots/backends/matplotlib/lmplot.py @@ -68,22 +68,22 @@ def plot_lm( y_hat_plot_kwargs.setdefault("linewidth", 0) y_hat_fill_kwargs = matplotlib_kwarg_dealiaser(y_hat_fill_kwargs, "fill_between") - y_hat_fill_kwargs.setdefault("color", "C1") + y_hat_fill_kwargs.setdefault("color", "C3") y_model_plot_kwargs = matplotlib_kwarg_dealiaser(y_model_plot_kwargs, "plot") - y_model_plot_kwargs.setdefault("color", "k") + y_model_plot_kwargs.setdefault("color", "C6") y_model_plot_kwargs.setdefault("alpha", 0.5) y_model_plot_kwargs.setdefault("linewidth", 0.5) y_model_plot_kwargs.setdefault("zorder", 9) y_model_fill_kwargs = matplotlib_kwarg_dealiaser(y_model_fill_kwargs, "fill_between") - y_model_fill_kwargs.setdefault("color", "k") + y_model_fill_kwargs.setdefault("color", "C0") y_model_fill_kwargs.setdefault("linewidth", 0.5) y_model_fill_kwargs.setdefault("zorder", 9) y_model_fill_kwargs.setdefault("alpha", 0.5) y_model_mean_kwargs = matplotlib_kwarg_dealiaser(y_model_mean_kwargs, "plot") - y_model_mean_kwargs.setdefault("color", "y") + y_model_mean_kwargs.setdefault("color", "C6") y_model_mean_kwargs.setdefault("linewidth", 0.8) y_model_mean_kwargs.setdefault("zorder", 11)