From af8113282f606ff35599b55dbc9c714ac1e8e2d5 Mon Sep 17 00:00:00 2001 From: Kris Rubiano <177184899+krisrubianodata@users.noreply.github.com> Date: Tue, 5 Nov 2024 11:29:54 -0500 Subject: [PATCH] DOC: Replaced green with blue --- galleries/examples/widgets/check_buttons.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/galleries/examples/widgets/check_buttons.py b/galleries/examples/widgets/check_buttons.py index 0f3b6319028d..2fe1eafe29db 100644 --- a/galleries/examples/widgets/check_buttons.py +++ b/galleries/examples/widgets/check_buttons.py @@ -27,7 +27,7 @@ fig, ax = plt.subplots() l0, = ax.plot(t, s0, visible=False, lw=2, color='black', label='1 Hz') l1, = ax.plot(t, s1, lw=2, color='red', label='2 Hz') -l2, = ax.plot(t, s2, lw=2, color='green', label='3 Hz') +l2, = ax.plot(t, s2, lw=2, color='blue', label='3 Hz') lines_by_label = {l.get_label(): l for l in [l0, l1, l2]} line_colors = [l.get_color() for l in lines_by_label.values()]