Download Qt Style Sheet files
-
i'm not aware of such a stylesheet collection platform , but there are some styles/themes available for download:
- "dark/orange theme":http://tech-artists.org/forum/showthread.php?2359-Release-Qt-dark-orange-stylesheet
- "Fusion style (Qt5)":http://blog.qt.digia.com/blog/2012/10/30/cleaning-up-styles-in-qt5-and-adding-fusion/
- But they are ugly IMHO: http://qmc2.arcadehits.net/wordpress/style-sheets/
- "Glossy":http://www.developer.nokia.com/Community/Wiki/Glossy_Qt_stylesheet
- ... and many more on google ;)
-
I'll create a new Wiki page as a gallery for these styles. In addition to that I'll ask OpenDesktop guys to open new domain similar to http://kde-look.org but for Qt.
-
I created the wiki pages and I'll start filling them soon:
https://qt-project.org/wiki/Category:Styles -
2 other dark skins here:
http://qt-project.org/forums/viewthread/27978/ -
QtTheme : Enhance Qt UI styles with just 3 lines code.
Dowdload CSS file at here: https://hubenchang0515.github.io/QtTheme/
If this was helpful, please star it at https://github.com/hubenchang0515/QtTheme
QtTheme is a powerful library that simplifies Qt application styling by providing an intuitive way to apply professional themes with minimal code. It abstracts away the complexity of QSS (Qt Style Sheets) while offering extensive customization options.
Python:
# import QtTheme import QtTheme.PySide6 as QtTheme # set global style mainwindow.setStyleSheet(QtTheme.getThemeStyle('Flat', 'Dark', 'Blue', 'Pink')) # set color of widgets button.setProperty("Color", "Primary")C++
QFile file(":/QtTheme/theme/Flat/Dark/Blue/Pink.qss"); file.open(QFile::ReadOnly); // set global style setStyleSheet(file.readAll()); // set color of widgets button->setProperty("Color", "Primary");

-
QtTheme : Enhance Qt UI styles with just 3 lines code.
Dowdload CSS file at here: https://hubenchang0515.github.io/QtTheme/
If this was helpful, please star it at https://github.com/hubenchang0515/QtTheme
QtTheme is a powerful library that simplifies Qt application styling by providing an intuitive way to apply professional themes with minimal code. It abstracts away the complexity of QSS (Qt Style Sheets) while offering extensive customization options.
Python:
# import QtTheme import QtTheme.PySide6 as QtTheme # set global style mainwindow.setStyleSheet(QtTheme.getThemeStyle('Flat', 'Dark', 'Blue', 'Pink')) # set color of widgets button.setProperty("Color", "Primary")C++
QFile file(":/QtTheme/theme/Flat/Dark/Blue/Pink.qss"); file.open(QFile::ReadOnly); // set global style setStyleSheet(file.readAll()); // set color of widgets button->setProperty("Color", "Primary");

@Plan-C You should consider posting this here: https://forum.qt.io/category/8/showcase