added dark window to dark theme

This commit is contained in:
fourtf
2018-04-05 23:44:46 +02:00
parent 5433daa1ea
commit 723f8f4989
8 changed files with 88 additions and 71 deletions
+13 -3
View File
@@ -32,6 +32,15 @@ public:
} backgrounds;
};
/// WINDOW
struct {
QColor background;
QColor text;
QColor borderUnfocused;
QColor borderFocused;
} window;
/// TABS
struct {
TabColors regular;
TabColors selected;
@@ -40,6 +49,7 @@ public:
QColor border;
} tabs;
/// SPLITS
struct {
QColor messageSeperator;
QColor background;
@@ -64,6 +74,7 @@ public:
} input;
} splits;
/// MESSAGES
struct {
struct {
QColor regular;
@@ -85,6 +96,7 @@ public:
QColor selection;
} messages;
/// SCROLLBAR
struct {
QColor background;
QColor thumb;
@@ -93,14 +105,12 @@ public:
// QColor highlights[3];
} scrollbars;
/// TOOLTIP
struct {
QColor text;
QColor background;
} tooltip;
QColor windowBg;
QColor windowText;
void normalizeColor(QColor &color);
void update();