From 635746aab2f4831e4cb4b54b432eec0a7a979b32 Mon Sep 17 00:00:00 2001 From: quadbyte Date: Sun, 17 Aug 2025 14:01:48 -0400 Subject: [PATCH] Calendar: fixed "today" color. Color was invalid --- Modules/Calendar/Calendar.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/Calendar/Calendar.qml b/Modules/Calendar/Calendar.qml index ac99390..d2d5655 100644 --- a/Modules/Calendar/Calendar.qml +++ b/Modules/Calendar/Calendar.qml @@ -216,7 +216,7 @@ NLoader { NText { anchors.centerIn: parent text: model.day - color: model.today ? Color.onAccent : Color.mOnSurface + color: model.today ? Color.mOnPrimary : Color.mOnSurface opacity: model.month === grid.month ? Style.opacityHeavy : Style.opacityLight font.pointSize: (Style.fontSizeMedium * scaling) font.weight: model.today ? Style.fontWeightBold : Style.fontWeightRegular