File tree Expand file tree Collapse file tree 5 files changed +52
-5
lines changed
Expand file tree Collapse file tree 5 files changed +52
-5
lines changed Original file line number Diff line number Diff line change 1+
12NAME = "Data"
23
34ID = "orange.widgets.data"
1213
1314ICON = "icons/Category-Data.svg"
1415
15- BACKGROUND = "#FFD39F"
16+ from AnyQt .QtGui import QPalette
17+
18+ BACKGROUND = {
19+ 'light' : {
20+ QPalette .Light : '#febc57' ,
21+ QPalette .Midlight : '#fe9457' ,
22+ QPalette .Button : '#fe9057' ,
23+ },
24+ 'plain' : "#FFD39F" ,
25+ }
1626
1727PRIORITY = 1
Original file line number Diff line number Diff line change 22Widgets from Evaluate category
33
44"""
5+
56NAME = "Evaluate"
67
78DESCRIPTION = "Evaluate classification/regression performance."
89
9- BACKGROUND = "#C3F3F3"
10+ from AnyQt .QtGui import QPalette
11+
12+ BACKGROUND = {
13+ 'light' : {
14+ QPalette .Light : '#a5ebeb' ,
15+ QPalette .Midlight : '#5cebeb' ,
16+ QPalette .Button : '#4be3f2' ,
17+ },
18+ 'plain' : "#C3F3F3" ,
19+ }
1020
1121ICON = "icons/Category-Evaluate.svg"
1222
Original file line number Diff line number Diff line change 44
55DESCRIPTION = 'Prediction.'
66
7- BACKGROUND = '#FAC1D9'
7+ from AnyQt .QtGui import QPalette
8+
9+ BACKGROUND = {
10+ 'light' : {
11+ QPalette .Light : '#ffbddb' ,
12+ QPalette .Midlight : '#ff8dc6' ,
13+ QPalette .Button : '#f175b6' ,
14+ },
15+ 'plain' : "#FAC1D9" ,
16+ }
817
918ICON = 'icons/Category-Model.svg'
1019
Original file line number Diff line number Diff line change 1313
1414DESCRIPTION = "Unsupervised learning."
1515
16- BACKGROUND = "#CAE1EF"
16+ from AnyQt .QtGui import QPalette
17+
18+ BACKGROUND = {
19+ 'light' : {
20+ QPalette .Light : '#aed2d9' ,
21+ QPalette .Midlight : '#5abced' ,
22+ QPalette .Button : '#499fd8' ,
23+ },
24+ 'plain' : "#CAE1EF" ,
25+ }
1726
1827ICON = "icons/Category-Unsupervised.svg"
1928
Original file line number Diff line number Diff line change 1515
1616DESCRIPTION = "Widgets for data visualization."
1717
18- BACKGROUND = "#FFB7B1"
18+ from AnyQt .QtGui import QPalette
19+
20+ BACKGROUND = {
21+ 'light' : {
22+ QPalette .Light : '#f2b6b8' ,
23+ QPalette .Midlight : '#ff8a99' ,
24+ QPalette .Button : '#ff7a8a' ,
25+ },
26+ 'plain' : "#FFB7B1" ,
27+ }
1928
2029ICON = "icons/Category-Visualize.svg"
2130
You can’t perform that action at this time.
0 commit comments