Qt Style Sheets
- stylesheet-examples
- Customizing Qt Widgets Using Style Sheets
- Qt Style Sheets Reference
- blog: 使用 QSS 美化 PyQt5 界面
- qt-material
Qt-Meterial:
pip install qt-material
import sys
from PySide6 import QtWidgets
# from PySide2 import QtWidgets
# from PyQt5 import QtWidgets
from qt_material import apply_stylesheet
# create the application and the main window
app = QtWidgets.QApplication(sys.argv)
window = QtWidgets.QMainWindow()
# setup stylesheet
apply_stylesheet(app, theme='dark_teal.xml')
# run
window.show()
app.exec_()