summaryrefslogtreecommitdiff
path: root/grc/gui/Colors.py
diff options
context:
space:
mode:
authorSebastian Koslowski <koslowski@kit.edu>2014-12-18 22:21:43 +0100
committerSebastian Koslowski <koslowski@kit.edu>2014-12-18 22:24:45 +0100
commit7bebb64fc4d58ee25c7f84d378aad4bd9065536c (patch)
treeb1f5aafb908b95bbc08495498d4d4b22f62c3b77 /grc/gui/Colors.py
parent20c71cb44a6f7500e64a8e9e394e9e1b372aa46d (diff)
grc: fix connections error log and color
Diffstat (limited to 'grc/gui/Colors.py')
-rw-r--r--grc/gui/Colors.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/grc/gui/Colors.py b/grc/gui/Colors.py
index fcde5c5974..7430705cf8 100644
--- a/grc/gui/Colors.py
+++ b/grc/gui/Colors.py
@@ -39,9 +39,9 @@ try:
BLOCK_DISABLED_COLOR = get_color('#CCCCCC')
#connection color constants
CONNECTION_ENABLED_COLOR = get_color('black')
- CONNECTION_DISABLED_COLOR = get_color('#999999')
+ CONNECTION_DISABLED_COLOR = get_color('#BBBBBB')
CONNECTION_ERROR_COLOR = get_color('red')
-
- DEFAULT_DOMAIN_COLOR = get_color('#666666')
except:
print 'Unable to import Colors'
+
+DEFAULT_DOMAIN_COLOR_CODE = '#777777'