added a theme

This commit is contained in:
2022-12-15 15:06:32 +01:00
parent 9951f0c5d8
commit 77d9ed2917
2 changed files with 52 additions and 1 deletions

View File

@ -3,9 +3,10 @@
import sys
from PyQt5.QtWidgets import QApplication
from mainwin import MainWindow
from theme import theme
app = QApplication(sys.argv)
theme(app)
mw = MainWindow()
mw.show()
sys.exit(app.exec())