-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdev_tools.qss
More file actions
33 lines (28 loc) · 930 Bytes
/
dev_tools.qss
File metadata and controls
33 lines (28 loc) · 930 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
/* dev_tools.qss */
/* General Styles */
QWidget {
background-color: #1e1e1e; /* Dark background for the whole widget */
color: #dcdcdc; /* Light text color for better contrast */
font-family: Arial, sans-serif;
}
QLabel {
color: #f0f0f0; /* Label text color */
font-weight: bold;
}
QTextEdit {
background-color: #2e2e2e; /* Dark background for text editors */
color: #dcdcdc; /* Light text color */
border: 1px solid #444; /* Dark border for editors */
border-radius: 4px; /* Rounded corners */
padding: 8px; /* Padding inside editors */
}
QPushButton {
background-color: #007acc; /* Button background color */
color: #ffffff; /* Button text color */
border: none; /* Remove border */
border-radius: 4px; /* Rounded corners */
padding: 8px 16px; /* Padding inside button */
}
QPushButton:hover {
background-color: #005f99; /* Darker button color on hover */
}