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
Installs
3
GitHub Stars
5
First Seen
Mar 13, 2026