Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. Download Qt Style Sheet files
Forum Updated to NodeBB v4.3 + New Features

Download Qt Style Sheet files

Scheduled Pinned Locked Moved General and Desktop
8 Posts 6 Posters 42.0k Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • I Offline
    I Offline
    irobot
    wrote on last edited by
    #1

    Where can I download free qt style sheet files please?

    1 Reply Last reply
    1
    • raven-worxR Offline
      raven-worxR Offline
      raven-worx
      Moderators
      wrote on last edited by
      #2

      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 ;)

      --- SUPPORT REQUESTS VIA CHAT WILL BE IGNORED ---
      If you have a question please use the forum so others can benefit from the solution in the future

      1 Reply Last reply
      1
      • M Offline
        M Offline
        mbnoimi
        wrote on last edited by
        #3

        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.

        1 Reply Last reply
        0
        • M Offline
          M Offline
          mbnoimi
          wrote on last edited by
          #4

          I encourage you to gather all founded Qt styles links here to be able to add them into wiki page.

          1 Reply Last reply
          0
          • M Offline
            M Offline
            mbnoimi
            wrote on last edited by
            #5

            I created the wiki pages and I'll start filling them soon:
            https://qt-project.org/wiki/Category:Styles

            1 Reply Last reply
            0
            • J Offline
              J Offline
              JulienMaille
              wrote on last edited by
              #6

              2 other dark skins here:
              http://qt-project.org/forums/viewthread/27978/

              1 Reply Last reply
              0
              • P Offline
                P Offline
                Plan C
                wrote last edited by Plan C
                #7

                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");
                

                dark-preview

                light-preview

                jsulmJ 1 Reply Last reply
                1
                • P Plan C

                  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");
                  

                  dark-preview

                  light-preview

                  jsulmJ Offline
                  jsulmJ Offline
                  jsulm
                  Lifetime Qt Champion
                  wrote last edited by
                  #8

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

                  https://forum.qt.io/topic/113070/qt-code-of-conduct

                  1 Reply Last reply
                  1

                  • Login

                  • Login or register to search.
                  • First post
                    Last post
                  0
                  • Categories
                  • Recent
                  • Tags
                  • Popular
                  • Users
                  • Groups
                  • Search
                  • Get Qt Extensions
                  • Unsolved