Skip to content

Commit

Permalink
Add transparency
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbelgium authored Nov 29, 2024
1 parent 79df9b2 commit 449dbc8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/utils/interactive_plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'],
Expand All @@ -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'],
Expand Down

0 comments on commit 449dbc8

Please sign in to comment.