diff options
author | Volker Schroer <3470424+dl1ksv@users.noreply.github.com> | 2020-05-14 17:28:46 +0200 |
---|---|---|
committer | Martin Braun <martin@gnuradio.org> | 2020-05-21 16:31:15 -0700 |
commit | bd91452db084ae96e5ab36f82c723b54bf106e9a (patch) | |
tree | 438a62611f22f00d2514eb88d4610de05f2a0526 /grc/gui | |
parent | 97668913a5ac6ac5aefa58684fa4100122e86494 (diff) |
grc: Fix background color of raw types for dark themes
Using a gtk3 dark theme makes the content of raw types in grc variable
or parameter blocks invisible. Changing the background color to a light
grey fixes this issue.
Diffstat (limited to 'grc/gui')
-rw-r--r-- | grc/gui/canvas/colors.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/grc/gui/canvas/colors.py b/grc/gui/canvas/colors.py index 93c1e11783..ab79abe94a 100644 --- a/grc/gui/canvas/colors.py +++ b/grc/gui/canvas/colors.py @@ -80,7 +80,7 @@ DARK_THEME_STYLES = b""" #dtype_string { background-color: #CC66CC; } #dtype_id { background-color: #DDDDDD; } #dtype_stream_id { background-color: #DDDDDD; } - #dtype_raw { background-color: #23272A; } + #dtype_raw { background-color: #DDDDDD; } #enum_custom { background-color: #EEEEEE; } """ |