From bd79bc232be24f803d7c44764c4932c4c579dec6 Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Wed, 18 Jun 2025 23:56:22 +0200 Subject: [PATCH] fab: update color mappings --- .../modules/common/widgets/FloatingActionButton.qml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.config/quickshell/modules/common/widgets/FloatingActionButton.qml b/.config/quickshell/modules/common/widgets/FloatingActionButton.qml index 2f618437f..bc6031e79 100644 --- a/.config/quickshell/modules/common/widgets/FloatingActionButton.qml +++ b/.config/quickshell/modules/common/widgets/FloatingActionButton.qml @@ -16,9 +16,9 @@ RippleButton { implicitWidth: Math.max(contentRowLayout.implicitWidth + 10 * 2, baseSize) implicitHeight: baseSize buttonRadius: Appearance.rounding.small - colBackground: Appearance.colors.colSecondaryContainer - colBackgroundHover: Appearance.colors.colSecondaryContainerHover - colRipple: Appearance.colors.colSecondaryContainerActive + colBackground: Appearance.colors.colPrimaryContainer + colBackgroundHover: Appearance.colors.colPrimaryContainerHover + colRipple: Appearance.colors.colPrimaryContainerActive contentItem: RowLayout { id: contentRowLayout property real horizontalMargins: (root.baseSize - icon.width) / 2 @@ -34,7 +34,7 @@ RippleButton { Layout.fillWidth: true horizontalAlignment: Text.AlignHCenter iconSize: 24 - color: Appearance.colors.colOnLayer1 + color: Appearance.colors.colOnPrimaryContainer text: root.iconText } Loader { @@ -50,7 +50,7 @@ RippleButton { leftMargin: root.elementSpacing } text: root.buttonText - color: Appearance.colors.colOnLayer1 + color: Appearance.colors.colOnPrimaryContainer font.pixelSize: 14 font.weight: 450 }