diff --git a/.config/quickshell/ii/modules/bar/BarContent.qml b/.config/quickshell/ii/modules/bar/BarContent.qml index 7b0a090dc..4f538e1cc 100644 --- a/.config/quickshell/ii/modules/bar/BarContent.qml +++ b/.config/quickshell/ii/modules/bar/BarContent.qml @@ -293,6 +293,7 @@ Item { // Bar content region HyprlandXkbIndicator { Layout.alignment: Qt.AlignVCenter Layout.rightMargin: indicatorsRowLayout.realSpacing + color: rightSidebarButton.colText } MaterialSymbol { Layout.rightMargin: indicatorsRowLayout.realSpacing diff --git a/.config/quickshell/ii/modules/bar/HyprlandXkbIndicator.qml b/.config/quickshell/ii/modules/bar/HyprlandXkbIndicator.qml index c4dc11083..a6ca214aa 100644 --- a/.config/quickshell/ii/modules/bar/HyprlandXkbIndicator.qml +++ b/.config/quickshell/ii/modules/bar/HyprlandXkbIndicator.qml @@ -6,6 +6,7 @@ import qs.modules.common.widgets Loader { id: root property bool vertical: false + property color color: Appearance.colors.colOnSurfaceVariant active: HyprlandXkb.layoutCodes.length > 1 visible: active @@ -26,7 +27,7 @@ Loader { horizontalAlignment: Text.AlignHCenter text: abbreviateLayoutCode(HyprlandXkb.currentLayoutCode) font.pixelSize: text.includes("\n") ? Appearance.font.pixelSize.smallie : Appearance.font.pixelSize.small - color: rightSidebarButton.colText + color: root.color animateChange: true } } diff --git a/.config/quickshell/ii/modules/verticalBar/VerticalBarContent.qml b/.config/quickshell/ii/modules/verticalBar/VerticalBarContent.qml index 8635bc969..39dc14ba3 100644 --- a/.config/quickshell/ii/modules/verticalBar/VerticalBarContent.qml +++ b/.config/quickshell/ii/modules/verticalBar/VerticalBarContent.qml @@ -271,6 +271,7 @@ Item { // Bar content region vertical: true Layout.alignment: Qt.AlignHCenter Layout.bottomMargin: indicatorsColumnLayout.realSpacing + color: rightSidebarButton.colText } MaterialSymbol { Layout.bottomMargin: indicatorsColumnLayout.realSpacing