1 files changed, 3 insertions, 1 deletions
diff --git a/src/ui/Theme.h b/src/ui/Theme.h
index f3e7c287..4fef897d 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 orange READ orange CONSTANT)
public:
Theme() {}
explicit Theme(std::string_view theme);
@@ -71,7 +72,8 @@ public:
QColor alternateButton() const { return alternateButton_; }
QColor separator() const { return separator_; }
QColor red() const { return red_; }
+ QColor orange() const { return orange_; }
private:
- QColor sidebarBackground_, separator_, red_, alternateButton_;
+ QColor sidebarBackground_, separator_, red_, orange_, alternateButton_;
};
|