1 files changed, 2 insertions, 0 deletions
diff --git a/src/ui/Theme.h b/src/ui/Theme.h
index 4fef897d..4dbe03f9 100644
--- a/src/ui/Theme.h
+++ b/src/ui/Theme.h
@@ -62,6 +62,7 @@ class Theme : public QPalette
Q_PROPERTY(QColor alternateButton READ alternateButton CONSTANT)
Q_PROPERTY(QColor separator READ separator CONSTANT)
Q_PROPERTY(QColor red READ red CONSTANT)
+ Q_PROPERTY(QColor error READ error CONSTANT)
Q_PROPERTY(QColor orange READ orange CONSTANT)
public:
Theme() {}
@@ -72,6 +73,7 @@ public:
QColor alternateButton() const { return alternateButton_; }
QColor separator() const { return separator_; }
QColor red() const { return red_; }
+ QColor error() const { return QColor(0xdd, 0x3d, 0x3d); }
QColor orange() const { return orange_; }
private:
|