-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.py
More file actions
52 lines (43 loc) · 991 Bytes
/
style.py
File metadata and controls
52 lines (43 loc) · 991 Bytes
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
style_main = """
QMainWindow {
background-color: rgb(42, 39, 46);
color: white;
}
QLabel {
color: white;
}
QListWidget{
background-color: rgb(42, 39, 46);
color: white;
border: 2px solid rgb(255, 176, 178);
}
QSlider::groove:horizontal {
background: rgb(255, 176, 178);
position: absolute;
left: 4px;
right: 4px;
}
QSlider::handle:horizontal {
height: 10px;
background: rgb(64, 59, 70);
margin: 0 -4px;
}
QSlider::add-page:horizontal {
background: white;
}
QSlider::sub-page:horizontal {
background: rgb(255, 176, 178);
}
"""
style_play_btn = """
border-radius: 40px;
background-color: rgb(255, 176, 178);
"""
style_prev_next_btn = """
background-color: rgb(64, 59, 70);
border-radius: 20px;
"""
style_choose_btn = """
color: white;
border: 2px solid rgb(255, 176, 178);
"""