-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.py
More file actions
48 lines (43 loc) · 881 Bytes
/
styles.py
File metadata and controls
48 lines (43 loc) · 881 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
STYLE = """
QMainWindow {
background-color: #0d1117;
}
QLabel {
color: white;
font-size: 16px;
font-family: Segoe UI;
}
QTextEdit {
background-color: #161b22;
color: #58a6ff;
border: 2px solid #30363d;
border-radius: 10px;
padding: 10px;
font-size: 14px;
box-shadow: 0 0 15px #58a6ff;
}
QPushButton {
background-color: #21262d;
color: white;
border: 2px solid #58a6ff;
border-radius: 10px;
padding: 10px;
font-size: 14px;
transition: background-color 0.3s ease, padding 0.3s ease;
}
QPushButton:hover {
background-color: #58a6ff;
color: #21262d;
padding: 12px;
box-shadow: 0 0 25px #58a6ff;
}
QLineEdit {
background-color: #161b22;
color: white;
border: 2px solid #30363d;
border-radius: 10px;
padding: 8px;
font-size: 14px;
box-shadow: 0 0 15px #58a6ff;
}
"""