Created
June 23, 2024 16:16
-
-
Save aerickt/04a56b23623afed376db38a6ca64388e to your computer and use it in GitHub Desktop.
plover-adwaita-dark.qss
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
QWidget { | |
background-color: rgb(45, 45, 45); | |
color: white; | |
} | |
QToolTip { | |
background-color: black; | |
color: white; | |
} | |
QPushButton { | |
background-color: rgb(45, 45, 45); | |
color: white; | |
} | |
QPushButton::bright { | |
color: red; | |
} | |
QWidget::item { | |
color: white; | |
background-color: rgb(45, 45, 45); | |
} | |
QWidget::item:disabled { | |
color: rgb(148, 148, 148); | |
background-color: rgb(53, 53, 53); | |
} | |
QTextEdit { | |
background-color: #1d1d1d; | |
} | |
QWidget::item:selected { | |
color: black; | |
background-color: rgb(42, 130, 218); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment