-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstylesheet.qss
51 lines (44 loc) · 930 Bytes
/
stylesheet.qss
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
QWidget {
background-color: rgb(0, 0, 0);
font: 87 10pt "Source Code Variable";
color: white;
}
QLineEdit {
border: 2px solid grey;
border-radius: 5px;
padding: 0 20px;
background: rgb(0, 0, 0) ;
color: white;
selection-background-color: darkgray;
font: 12 15pt ;
}
QTextEdit {
border: 0.5px solid grey;
border-radius: 5px;
padding: 0 20px;
background: #FFEB3B;
color: black;
selection-background-color: darkgray;
font 0 8px;
}
QCheckBox::indicator:unchecked {
background: #f50057;
}
QCheckBox::indicator:unchecked:hover {
background: #00e676;
}
QCheckBox::indicator:checked {
background : #00e676;
}
QCheckBox::indicator::checked::hover {
background : #f50057;
}
QTabWidget::pane {
border-width: 2px;
border-style: solid;
border-color: #0000ff;
border-radius: 6px;
}
QTabWidget::tab-bar {
left: 5px;
}