From 6461dd172bca78ca0acadb1d0a9cf53200c7d182 Mon Sep 17 00:00:00 2001 From: lilvegan <86798767+lilvegan@users.noreply.github.com> Date: Sat, 29 Jul 2023 02:00:45 -0400 Subject: [PATCH] use theme colors and change styling --- 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)