20#ifndef ORES_QT_DIALOG_STYLES_HPP
21#define ORES_QT_DIALOG_STYLES_HPP
34 static inline const QString panel = R
"(
36 background-color: #1A1A1A;
40 static inline const QString input_field = R
"(
42 background-color: #2d2d2d;
43 border: 1px solid #3d3d3d;
50 border-color: #5a5a5a;
51 background-color: #333333;
53 QLineEdit::placeholder {
58 static inline const QString input_field_match = R
"(
60 background-color: #2d2d2d;
61 border: 2px solid #4CAF50;
68 border-color: #4CAF50;
69 background-color: #333333;
73 static inline const QString input_field_mismatch = R
"(
75 background-color: #2d2d2d;
76 border: 2px solid #FF9800;
83 border-color: #FF9800;
84 background-color: #333333;
88 static inline const QString spin_box = R
"(
90 background-color: #2d2d2d;
91 border: 1px solid #3d3d3d;
98 border-color: #5a5a5a;
99 background-color: #333333;
103 static inline const QString primary_button = R
"(
105 background-color: #3d3d3d;
114 background-color: #4a4a4a;
116 QPushButton:pressed {
117 background-color: #333333;
119 QPushButton:disabled {
120 background-color: #2a2a2a;
125 static inline const QString checkbox = R
"(
127 background: transparent;
132 QCheckBox::indicator {
135 border: 1px solid #3d3d3d;
137 background-color: #2d2d2d;
139 QCheckBox::indicator:checked {
140 background-color: #4a4a4a;
141 border-color: #5a5a5a;
145 static inline const QString link_button = R
"(
147 background: transparent;
155 text-decoration: underline;
159 static inline const QString field_label = R
"(
161 background: transparent;
169 static inline const QString version = R
"(
171 background: transparent;
177 static inline const QString status = R
"(
179 background: transparent;
186 static inline const QString subtitle = R
"(
188 background: transparent;
194 static inline const QString saved_connections_button = R
"(
196 background: transparent;
201 background-color: #2d2d2d;
204 QToolButton::menu-indicator {
Qt-based graphical user interface for ORE Studio.
Definition AboutDialog.hpp:35
Centralized stylesheet constants for dark-themed dialogs.
Definition DialogStyles.hpp:33