Only set certain colors in light mode

This commit is contained in:
Garrett Robinson 2023-09-28 16:22:39 +03:00 committed by Alex Pyrgiotis
parent 46f978e6f0
commit 40b6240097
No known key found for this signature in database
GPG key ID: B6C15EBA0357C9AA

View file

@ -5,7 +5,7 @@ QLineEdit {
padding: 3px;
}
QWidget {
MainWindow[OSColorMode="light"] QWidget {
color: black;
}
@ -19,6 +19,9 @@ QLabel[style="safe_extension_filename"] {
border-style: solid;
border-color: #c8c8c8;
padding: 4px 0px 4px 4px;
}
MainWindow[OSColorMode="light"] QLabel[style="safe_extension_filename"] {
background: white;
color: grey;
}