- Notifications
You must be signed in to change notification settings - Fork2
Advik-B/QtTheme
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
Are you tired of making custom qt stysheets, do you want add a theme system for app
seereleases
fromQtThemeimportapply_themefromPyQt5.QtWidgetsimportQApplication,QMainWindowclassYourExistingGui(QMainWindow):def__init__(self): ...# Your existing codeapply_theme(self,"ubuntu")
Or list all themes
fromQtThemeimportapply_theme,list_themesfromPyQt5.QtWidgetsimportQApplication,QMainWindowclassYourExistingGui(QMainWindow):def__init__(self): ...# Your existing codeapply_theme(self,list_theme()[0])
Or apply random theme
fromQtThemeimportapply_random_themefromPyQt5.QtWidgetsimportQApplication,QMainWindowclassYourExistingGui(QMainWindow):def__init__(self): ...# Your existing codeapply_random_theme(self)
Some themes are fromqss-stock.devsecstudio.com
About
Theme manager for Qt Apps