Add a bit more contrast to event indicator in calendar

Now make it darker on light theme and lighter on dark theme

CCBUG: 437203
This commit is contained in:
Carl Schwan 2021-05-19 19:38:14 +02:00 committed by Nate Graham
parent ead37fb5db
commit 11e2ae62ba
1 changed files with 2 additions and 1 deletions

View File

@ -14,6 +14,7 @@ import org.kde.plasma.components 2.0 as PlasmaComponents2 // For Highlight
import org.kde.plasma.components 3.0 as PlasmaComponents3 import org.kde.plasma.components 3.0 as PlasmaComponents3
import org.kde.plasma.extras 2.0 as PlasmaExtras import org.kde.plasma.extras 2.0 as PlasmaExtras
import QtQml.Models 2.15 import QtQml.Models 2.15
import org.kde.kirigami 2.12 as Kirigami
import org.kde.plasma.calendar 2.0 import org.kde.plasma.calendar 2.0
@ -85,7 +86,7 @@ PlasmaComponents3.AbstractButton {
width: PlasmaCore.Units.smallSpacing * 1.5 width: PlasmaCore.Units.smallSpacing * 1.5
height: width height: width
radius: width / 2 radius: width / 2
color: eventColor || PlasmaCore.Theme.highlightColor color: model.eventColor ? Kirigami.ColorUtils.linearInterpolation(model.eventColor, PlasmaCore.Theme.textColor, 0.2) : PlasmaCore.Theme.highlightColor
} }
} }
} }