We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 96855fb commit a805ff4Copy full SHA for a805ff4
pgd_search/plot/PlotForm.py
@@ -165,12 +165,10 @@ def clean(self):
165
data['attribute'] = data['attribute'].replace('-','_')
166
except KeyError:
167
pass
168
- if not data['background_color'] :
169
- data['background_color'] = 'Transparent'
170
if not data['graph_color'] :
171
- data['graph_color'] = 'Dark Gray'
+ data['graph_color'] = '#222222'
172
if not data['hash_color'] :
173
- data['hash_color'] = 'Gray'
+ data['hash_color'] = '#666666'
174
if not data['text_color'] :
175
- data['text_color'] = 'Black'
+ data['text_color'] = '#000000'
176
return data
0 commit comments