diff --git a/src/kcm/package/contents/ui/Advanced.qml b/src/kcm/package/contents/ui/Advanced.qml --- a/src/kcm/package/contents/ui/Advanced.qml +++ b/src/kcm/package/contents/ui/Advanced.qml @@ -108,6 +108,7 @@ Label { text: i18nc("@label", "Output:") font.bold: true + color: theme.textColor } ComboBox { diff --git a/src/kcm/package/contents/ui/CardListItem.qml b/src/kcm/package/contents/ui/CardListItem.qml --- a/src/kcm/package/contents/ui/CardListItem.qml +++ b/src/kcm/package/contents/ui/CardListItem.qml @@ -43,6 +43,7 @@ Layout.fillWidth: true text: Properties["device.description"] || Name elide: Text.ElideRight + color: theme.textColor } } @@ -51,6 +52,7 @@ id: profileLabel text: i18nc("@label", "Profile:") font.bold: true + color: theme.textColor } ComboBox { Layout.fillWidth: true diff --git a/src/kcm/package/contents/ui/DeviceListItem.qml b/src/kcm/package/contents/ui/DeviceListItem.qml --- a/src/kcm/package/contents/ui/DeviceListItem.qml +++ b/src/kcm/package/contents/ui/DeviceListItem.qml @@ -42,6 +42,7 @@ Layout.fillWidth: true elide: Text.ElideRight text: Description + color: theme.textColor } DefaultDeviceButton { @@ -71,6 +72,7 @@ Label { text: i18n("Port") + color: theme.textColor } ComboBox { diff --git a/src/kcm/package/contents/ui/Header.qml b/src/kcm/package/contents/ui/Header.qml --- a/src/kcm/package/contents/ui/Header.qml +++ b/src/kcm/package/contents/ui/Header.qml @@ -35,6 +35,7 @@ id: heading anchors.centerIn: parent font.weight: Font.DemiBold + color: theme.textColor } } @@ -43,5 +44,6 @@ Layout.alignment: Qt.AlignCenter visible: text && !parent.enabled font.italic: true + color: theme.textColor } } diff --git a/src/kcm/package/contents/ui/VolumeSlider.qml b/src/kcm/package/contents/ui/VolumeSlider.qml --- a/src/kcm/package/contents/ui/VolumeSlider.qml +++ b/src/kcm/package/contents/ui/VolumeSlider.qml @@ -86,6 +86,7 @@ opacity: 0.5 font.pixelSize: slider.height / 2.2 text: i18n("100%") + color: theme.textColor } Timer { @@ -102,6 +103,7 @@ Layout.minimumWidth: percentMetrics.advanceWidth horizontalAlignment: Qt.AlignRight text: i18nc("volume percentage", "%1%", Math.round(value / PulseAudio.NormalVolume * 100.0)) + color: theme.textColor } TextMetrics {