From 449dbc88bc457d3e16e18c873c7a9b8f9337485f Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Fri, 29 Nov 2024 16:57:19 +0100 Subject: [PATCH] Add transparency --- scripts/utils/interactive_plot.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/utils/interactive_plot.py b/scripts/utils/interactive_plot.py index 827ca874..431ca537 100644 --- a/scripts/utils/interactive_plot.py +++ b/scripts/utils/interactive_plot.py @@ -12,7 +12,7 @@ if color_scheme == 'dark': PLOT_BGCOLOR = '#F0F0F0' - PAPER_BGCOLOR = '#aaaaaa' + PAPER_BGCOLOR = 'rgba(170, 170, 170, 0.7)' CUSTOM_COLOR_SCALE = [ [0.0, PLOT_BGCOLOR], [0.2, '#BDBDBD'], @@ -23,7 +23,7 @@ ] else: PLOT_BGCOLOR = '#FFFFFF' - PAPER_BGCOLOR = '#7BC58A' + PAPER_BGCOLOR = 'rgba(123, 197, 138, 0.7)' CUSTOM_COLOR_SCALE = [ [0.0, PLOT_BGCOLOR], [0.2, '#A3D8A1'],