diff --git a/.config/quickshell/modules/bar/weather/WeatherBar.qml b/.config/quickshell/modules/bar/weather/WeatherBar.qml index 58f68ab45..bcab6edcc 100644 --- a/.config/quickshell/modules/bar/weather/WeatherBar.qml +++ b/.config/quickshell/modules/bar/weather/WeatherBar.qml @@ -40,7 +40,7 @@ Item { StyledText { visible: true - font.pixelSize: Appearance.font.pixelSize.normal + font.pixelSize: Appearance.font.pixelSize.large color: Appearance.colors.colOnLayer1 text: WeatherService.data.temp } diff --git a/.config/quickshell/modules/bar/weather/WeatherCard.qml b/.config/quickshell/modules/bar/weather/WeatherCard.qml index 6910b2cc5..7b81fe543 100644 --- a/.config/quickshell/modules/bar/weather/WeatherCard.qml +++ b/.config/quickshell/modules/bar/weather/WeatherCard.qml @@ -6,10 +6,8 @@ import "root:/modules/common/widgets" Rectangle { id: root - radius: Appearance.rounding.verysmall + radius: Appearance.rounding.small color: Appearance.colors.colLayer1 - border.color: Appearance.colors.colShadow - border.width: 1 implicitWidth: columnLayout.implicitWidth * 2 implicitHeight: columnLayout.implicitHeight * 2 Layout.fillWidth: parent @@ -29,17 +27,17 @@ Rectangle { fill: 0 iconSize: Appearance.font.pixelSize.normal } - Text { + StyledText { id: title font.pixelSize: Appearance.font.pixelSize.smaller - color: Appearance.colors.colOnLayer2 + color: Appearance.colors.colOnLayer1 } } - Text { + StyledText { id: value Layout.alignment: Qt.AlignHCenter font.pixelSize: Appearance.font.pixelSize.normal - color: Appearance.colors.colOnLayer2 + color: Appearance.colors.colOnLayer1 } } } diff --git a/.config/quickshell/modules/bar/weather/WeatherPopup.qml b/.config/quickshell/modules/bar/weather/WeatherPopup.qml index 04f0c307a..931a0469a 100644 --- a/.config/quickshell/modules/bar/weather/WeatherPopup.qml +++ b/.config/quickshell/modules/bar/weather/WeatherPopup.qml @@ -35,9 +35,10 @@ Rectangle { iconSize: Appearance.font.pixelSize.huge } - Text { + StyledText { text: WeatherService.data.city - font.pixelSize: Appearance.font.pixelSize.large + font.pixelSize: Appearance.font.pixelSize.title + font.family: Appearance.font.family.title color: Appearance.colors.colOnLayer0 } }