From 73abd5429a412f13515bd30f19a0008ddca0b44d Mon Sep 17 00:00:00 2001 From: Ethanfel Date: Mon, 6 Apr 2026 12:22:49 +0200 Subject: [PATCH] feat: dark theme, complete 8-cut tool Co-Authored-By: Claude Sonnet 4.6 --- main.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/main.py b/main.py index b4f1bb4..fd45a5e 100644 --- a/main.py +++ b/main.py @@ -187,6 +187,15 @@ class MpvWidget(QFrame): def main(): app = QApplication(sys.argv) + app.setStyle("Fusion") + app.setStyleSheet(""" + QWidget { background: #1e1e1e; color: #ddd; } + QPushButton { background: #333; border: 1px solid #555; padding: 4px 10px; border-radius: 3px; } + QPushButton:hover { background: #444; } + QPushButton:disabled { color: #555; } + QLineEdit { background: #2a2a2a; border: 1px solid #555; padding: 3px; border-radius: 3px; } + QStatusBar { color: #aaa; } + """) win = MainWindow() win.show() sys.exit(app.exec())