diff --git a/reusables/CustomIcon.qml b/reusables/CustomIcon.qml index 536573f..56adb77 100644 --- a/reusables/CustomIcon.qml +++ b/reusables/CustomIcon.qml @@ -9,7 +9,7 @@ CustomText { renderType: Text.NativeRendering font { hintingPreference: Font.PreferNoHinting - family: "Material Symbols Rounded" + family: "Material Symbols Outlined" pixelSize: iconSize weight: Font.Normal + (Font.DemiBold - Font.Normal) * truncatedFill variableAxes: { diff --git a/reusables/CustomText.qml b/reusables/CustomText.qml index 81e8eb0..643af2f 100644 --- a/reusables/CustomText.qml +++ b/reusables/CustomText.qml @@ -3,12 +3,8 @@ import qs import qs.settings Text { - verticalAlignment: Text.AlignVCenter color: Colors.onSurfaceColor font.family: Settings.config.font font.pixelSize: Settings.config.fontSize - font.variableAxes: ({ - GRAD: 200, - wght: 400 - }) + font.weight: Settings.config.fontWeight }