pick up the proper positive/neutral/negative colors

This commit is contained in:
Marco Martin 2017-09-28 16:14:06 +02:00
parent cab8fd9160
commit 9e7d02cde2

View File

@ -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