-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.qss
64 lines (54 loc) · 1.85 KB
/
style.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
52
53
54
55
56
57
58
59
60
61
62
63
64
/* Global Styles */
QWidget {
background-color: #222831; /* Dark background color */
color: #EEEEEE; /* Light text color */
font-size: 16px; /* Default font size */
}
QLabel {
font-size: 18px; /* Larger font size for labels */
}
QLineEdit, QTextEdit, QDateEdit {
background-color: #30475E; /* Input fields background color */
color: #EEEEEE; /* Input fields text color */
border: 2px solid #76ABAE; /* Input fields border color */
border-radius: 5px; /* Rounded corners for input fields */
padding: 5px; /* Padding inside input fields */
}
QPushButton {
font-size: 16px; /* Button text size */
background-color: #76ABAE; /* Button background color */
color: #222831; /* Button text color */
border: none; /* No button border */
padding: 8px 16px; /* Padding inside buttons */
border-radius: 5px; /* Rounded corners for buttons */
}
QPushButton:hover {
background-color: #88cccc; /* Button background color on hover */
}
QScrollArea {
background-color: #333; /* Scroll area background color */
}
QFrame {
background-color: #444; /* Frame background color */
border-radius: 5px; /* Rounded corners for frames */
padding: 5px; /* Padding inside frames */
}
/* Specific Styles */
QDialog {
background-color: #222831; /* Dialog background color */
color: #EEEEEE; /* Dialog text color */
font-size: 18px; /* Dialog font size */
}
QMessageBox {
background-color: #222831; /* Message box background color */
color: #EEEEEE; /* Message box text color */
font-size: 18px; /* Message box font size */
}
/* Specific styles for buttons inside QMessageBox */
QMessageBox QPushButton {
background-color: #76ABAE; /* Button background color */
color: #222831; /* Button text color */
}
QMessageBox QPushButton:hover {
background-color: #88cccc; /* Button background color on hover */
}