From 9e7d02cde2f707701fe8dff11455c77c91c19950 Mon Sep 17 00:00:00 2001 From: Marco Martin Date: Thu, 28 Sep 2017 16:14:06 +0200 Subject: [PATCH] pick up the proper positive/neutral/negative colors --- src/declarativeimports/core/quicktheme.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/declarativeimports/core/quicktheme.cpp b/src/declarativeimports/core/quicktheme.cpp index 43840462e..2899cd42b 100644 --- a/src/declarativeimports/core/quicktheme.cpp +++ b/src/declarativeimports/core/quicktheme.cpp @@ -51,17 +51,17 @@ QColor QuickTheme::highlightedTextColor() const QColor QuickTheme::positiveTextColor() const { - return Plasma::Theme::color(Plasma::Theme::TextColor); + return Plasma::Theme::color(Plasma::Theme::PositiveTextColor); } QColor QuickTheme::neutralTextColor() const { - return Plasma::Theme::color(Plasma::Theme::TextColor); + return Plasma::Theme::color(Plasma::Theme::NeutralTextColor); } QColor QuickTheme::negativeTextColor() const { - return Plasma::Theme::color(Plasma::Theme::TextColor); + return Plasma::Theme::color(Plasma::Theme::NegativeTextColor); } QColor QuickTheme::backgroundColor() const