-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcode_Stylesheet.py
60 lines (54 loc) · 1.25 KB
/
code_Stylesheet.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
from PyQt5.QtGui import QColor
baseColor = "rgb(225, 225, 225)"
tableColor = "rgb(240, 240, 240)"
mdiAreaColor = QColor(67, 129, 168)
textColor = "black"
speciesColor = QColor(12, 114, 179)
stylesheetBase = (
"QWidget {" +
"background:" + baseColor + ";" +
"color:" + textColor + ";" +
"}"
"QTableWidget {" +
"background:" + tableColor + ";" +
"color:" + textColor + ";" +
"}"
"QListWidget {" +
"background:" + tableColor + ";" +
"color:" + textColor + ";" +
"}"
"QLineEdit {" +
"background:" + tableColor + ";" +
"color:" + textColor + ";" +
"}"
"QPlainTextEdit {" +
"background:" + tableColor + ";" +
"color:" + textColor + ";" +
"}"
)
#
# QComboBox {
# border: 2px;
# outline: 2px;
# border-radius: 2px;
# padding: 1px 18px 1px 3px;
# min-width: 3em;
# color: rgb(223, 228, 235)
# }
#
# QListWidget:item:selected {
# background: rgb(56,114,189)
# }
#
# QListWidget:item:!active {
# color: silver
# }
#
# QPushButton {
# background-color: rgb(80,80,80);
# border-radius: 1px;
# padding: 5px;
# min-width: 5em;
# outline: 1px
# }
# """