qt-styling
Installation
SKILL.md
Qt Stylesheets (QSS)
Applying Stylesheets
# Application-wide (affects all widgets)
app.setStyleSheet("""
QWidget {
font-family: "Inter", "Segoe UI", sans-serif;
font-size: 13px;
}
QPushButton {
background-color: #0078d4;
color: white;
border: none;
border-radius: 4px;
padding: 6px 16px;
min-width: 80px;
}
Related skills