diff --git a/app/plasma/extended/theme.cpp b/app/plasma/extended/theme.cpp index ec566996c..810dc9905 100644 --- a/app/plasma/extended/theme.cpp +++ b/app/plasma/extended/theme.cpp @@ -257,7 +257,7 @@ void Theme::updateReversedSchemeValues() if (originalPtr && reversedPtr) { for (const auto &groupName : reversedPtr->groupList()) { - if (groupName != "Colors:Button") { + if (groupName != "Colors:Button" && groupName != "Colors:Selection") { KConfigGroup reversedGroup(reversedPtr, groupName); if (reversedGroup.keyList().contains("BackgroundNormal") diff --git a/containment/package/contents/ui/colorizer/Manager.qml b/containment/package/contents/ui/colorizer/Manager.qml index d5ad09db5..4388d98b8 100644 --- a/containment/package/contents/ui/colorizer/Manager.qml +++ b/containment/package/contents/ui/colorizer/Manager.qml @@ -125,16 +125,16 @@ Loader{ readonly property color inactiveBackgroundColor: applyTheme === theme ? theme.backgroundColor : applyTheme.inactiveBackgroundColor readonly property color inactiveTextColor: applyTheme === theme ? theme.textColor : applyTheme.inactiveTextColor - readonly property color highlightColor: theme.highlightColor - readonly property color highlightedTextColor: theme.highlightedTextColor + readonly property color highlightColor: applyTheme.highlightColor + readonly property color highlightedTextColor: applyTheme.highlightedTextColor readonly property color positiveTextColor: applyTheme.positiveTextColor readonly property color neutralTextColor: applyTheme.neutralTextColor readonly property color negativeTextColor: applyTheme.negativeTextColor - readonly property color buttonTextColor: theme.buttonTextColor - readonly property color buttonBackgroundColor: theme.buttonBackgroundColor - readonly property color buttonHoverColor: theme.buttonHoverColor - readonly property color buttonFocusColor: theme.buttonFocusColor + readonly property color buttonTextColor: applyTheme.buttonTextColor + readonly property color buttonBackgroundColor: applyTheme.buttonBackgroundColor + readonly property color buttonHoverColor: applyTheme.buttonHoverColor + readonly property color buttonFocusColor: applyTheme.buttonFocusColor readonly property string scheme: { if (root.inConfigureAppletsMode && (root.themeColors === Latte.Types.SmartThemeColors)) { diff --git a/indicators/org.kde.latte.plasma/package/ui/FrontLayer.qml b/indicators/org.kde.latte.plasma/package/ui/FrontLayer.qml index bb6f91a7e..270676f40 100644 --- a/indicators/org.kde.latte.plasma/package/ui/FrontLayer.qml +++ b/indicators/org.kde.latte.plasma/package/ui/FrontLayer.qml @@ -88,7 +88,7 @@ Item { radius: width/2 height: width - color: theme.buttonFocusColor + color: theme.highlightColor } } @@ -97,7 +97,7 @@ Item { ScriptAction{ script: { clickedRectangle.width = 0; - clickedRectangle.opacity = 0.85; + clickedRectangle.opacity = 0.75; clickedRectangle.anchors.rightMargin = 0; clickedRectangle.anchors.leftMargin = 0; clickedRectangle.anchors.topMargin = 0;