Wayfinder/styles.qss
milo 8adbe8a491 Inital commit
Last bit of the data from the bot
2025-05-06 21:39:41 -04:00

32 lines
577 B
Text

/* Set the background color */
QWidget {
background-color: #2E3440;
}
/* Style buttons */
QPushButton#controlButton {
background-color: #4C566A;
color: white;
border-radius: 10px;
font-size: 18px;
padding: 10px;
}
QPushButton#controlButton:hover {
background-color: #5E81AC;
}
QPushButton#controlButton:pressed {
background-color: #88C0D0;
}
/* Style Labels */
QLabel {
color: white;
font-size: 16px;
}
/* Style Map Display */
QLabel#mapLabel {
background-color: #3B4252;
border: 2px solid #5E81AC;
border-radius: 10px;
}