-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.py
More file actions
87 lines (76 loc) · 1.39 KB
/
styles.py
File metadata and controls
87 lines (76 loc) · 1.39 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
general_style = """
QWidget {
background-color: #2b2b2b;
}
QLabel {
color: #ffffff;
font-size: 16px;
}
QSlider {
min-height: 25px;
max-height: 25px;
}
QSlider::groove:horizontal {
height: 10px;
background: #525252;
margin: 0px;
border-radius: 5px;
}
QSlider::handle:horizontal {
background-color: #ff5a1f;
border: none;
height: 20px;
width: 20px;
margin: -5px 0;
border-radius: 10px;
}
QSlider::groove:horizontal:hover {
background: #424242;
}
QSlider::handle:horizontal:hover {
background-color: #e65f23;
}
QSlider::groove:horizontal:pressed {
background: #333333;
}
QSlider::handle:horizontal:pressed {
background-color: #ff3218;
}
QPushButton {
background-color: #ff5a1f;
border: none;
color: white;
padding: 15px;
text-align: center;
text-decoration: none;
font-size: 16px;
margin: 4px 2px;
border-radius: 10px;
}
"""
anime_button = """
QPushButton {
background-color: #ff5a1f;
color: #FFFFFF;
border: none;
}
QPushButton:hover {
background-color: #eb3e00;
}
QPushButton:pressed {
background-color: #8B4513;
}
"""
pdf_button = """
QPushButton {
background-color: #008080;
color: #FFFFFF;
border: none;
}
QPushButton:hover {
background-color: #006767;
}
QPushButton:pressed {
background-color: #004646;
}
"""