diff --git a/Components/CustomText.qml b/Components/CustomText.qml index 37f8533..53ed176 100644 --- a/Components/CustomText.qml +++ b/Components/CustomText.qml @@ -16,7 +16,7 @@ Text { renderType: Text.NativeRendering textFormat: Text.PlainText color: DynamicColors.palette.m3onSurface - font.family: "Segoe UI Variable Text" + font.family: Config.baseFont font.pointSize: 12 Behavior on color { diff --git a/Config/Config.qml b/Config/Config.qml index 628be38..6a6b5f7 100644 --- a/Config/Config.qml +++ b/Config/Config.qml @@ -20,6 +20,7 @@ Singleton { property alias useDynamicColors: adapter.useDynamicColors property alias barConfig: adapter.barConfig property alias transparency: adapter.transparency + property alias baseFont: adapter.baseFont FileView { id: root @@ -48,6 +49,7 @@ Singleton { property bool useDynamicColors: false property BarConfig barConfig: BarConfig {} property Transparency transparency: Transparency {} + property string baseFont: "Segoe UI Variable Text" } } }