dark qss adjustments

This commit is contained in:
Jean-Francois Dockes 2020-08-14 15:32:14 +02:00
parent 322e17081f
commit 9cba5a3880
2 changed files with 19 additions and 11 deletions

View File

@ -29,9 +29,11 @@
/* Light on dark text everywhere*/ /* Light on dark text everywhere*/
* { * {
background-color: #3c3c3c; /* font-size: 14pt;*/
color: #d8d8d8; background-color: #373737;
color: #ffffff;
selection-background-color: #424e72; selection-background-color: #424e72;
selection-color: #ffffff;
} }
QToolTip { QToolTip {
@ -43,19 +45,25 @@ QMenuBar::item:selected {
background: #424e72; background: #424e72;
} }
/* I have used the colour values that were in QTabWidget QTabBar::tab for
* QTabWidget QTabBar::tab:selected, and vice-versa. Also, though, I have
* brightened the whites.*/
QTabWidget QTabBar::tab { QTabWidget QTabBar::tab {
background: #2f4f4f; background: #5f5f5f;
color: #FFF8DC; color: #ffffff;
} }
QTabWidget QTabBar::tab:selected { QTabWidget QTabBar::tab:selected {
background: #5f5f5f; background: #2f4f4f;
color: #FFF8DC; color: #ffffff;
} }
/* Slightly lighter background for text entry areas*/ /*
QComboBox[editable="true"], QTextEdit, QLineEdit, QTextBrowser, QTableView, * Slightly *darker* background for text entry areas, and brighter
QWebView, QPlainTextEdit { * (lighter) foreground.
background-color: #505050; */
color: #D8D8D8; QComboBox[editable="true"], QTextEdit, QLineEdit,
QTextBrowser, QTableView, QWebView, QPlainTextEdit {
background-color: #101010; /*Changed*/
color: #ffffff; /*Changed*/
} }