pragma Singleton import Quickshell import QtQuick Singleton { property Anim anim: Anim { } property Deform deform: Deform { } property FontStuff font: FontStuff { } property Padding padding: Padding { } property Rounding rounding: Rounding { } property Spacing spacing: Spacing { } property Transparency transparency: Transparency { } component Anim: QtObject { property AnimCurves curves: AnimCurves { } property AnimDurations durations: AnimDurations { } property real mediaGifSpeedAdjustment: Config.appearance.anim.mediaGifSpeedAdjustment property real sessionGifSpeed: Config.appearance.anim.sessionGifSpeed } component AnimCurves: QtObject { property list emphasized: [0.05, 0, 2 / 15, 0.06, 1 / 6, 0.4, 5 / 24, 0.82, 0.25, 1, 1, 1] property list emphasizedAccel: [0.3, 0, 0.8, 0.15, 1, 1] property list emphasizedDecel: [0.05, 0.7, 0.1, 1, 1, 1] property list expressiveDefaultEffects: [0.34, 0.8, 0.34, 1, 1, 1] property list expressiveDefaultSpatial: [0.38, 1.21, 0.22, 1, 1, 1] property list expressiveEffects: [0.34, 0.8, 0.34, 1, 1, 1] property list expressiveFastEffects: [0.31, 0.94, 0.34, 1, 1, 1] property list expressiveFastSpatial: [0.42, 1.67, 0.21, 0.9, 1, 1] property list expressiveSlowEffects: [0.34, 0.88, 0.34, 1, 1, 1] property list expressiveSlowSpatial: [0.39, 1.29, 0.35, 0.98, 1, 1] property list standard: [0.2, 0, 0, 1, 1, 1] property list standardAccel: [0.3, 0, 1, 1, 1, 1] property list standardDecel: [0, 0, 0, 1, 1, 1] } component AnimDurations: QtObject { property int expressiveDefaultSpatial: 500 * scale property int expressiveEffects: 200 * scale property int expressiveFastEffects: 150 * scale property int expressiveFastSpatial: 350 * scale property int expressiveSlowEffects: 300 * scale property int extraLarge: 1000 * scale property int large: 600 * scale property int normal: 400 * scale property real scale: 1 property int small: 200 * scale } component Deform: QtObject { property real scale: Config.appearance.deform.scale } component FontFamily: QtObject { property string clock: Config.appearance.font.family.clock property string material: Config.appearance.font.family.material property string mono: Config.appearance.font.family.mono property string sans: Config.appearance.font.family.sans } component FontSize: QtObject { property int extraLarge: 28 * scale property int large: 18 * scale property int larger: 16 * scale property int medium: 14 * scale property int normal: 13 * scale property real scale: 1 property int small: 11 * scale property int smaller: 12 * scale } component FontStuff: QtObject { property FontFamily family: FontFamily { } property FontSize size: FontSize { } } component Padding: QtObject { property int extraLarge: 28 * scale property int extraLargeIncreased: 32 * scale property int extraSmall: 4 * scale property int large: 16 * scale property int largeIncreased: 20 * scale property int larger: 12 * scale property int normal: 8 * scale property real scale: 1 property int small: 5 * scale property int smaller: 7 * scale property int smallest: 2 * scale } component Rounding: QtObject { property int extraSmall: 4 * scale property int full: 1000 * scale property int large: 24 * scale property int medium: 16 * scale property int normal: 18 * scale property real scale: 1 property int small: 12 * scale property int smallest: 8 * scale } component Spacing: QtObject { property int extraSmall: 4 * scale property int large: 20 * scale property int larger: 16 * scale property int normal: 12 * scale property real scale: 1 property int small: 8 * scale property int smaller: 10 * scale } component Transparency: QtObject { property real base: Config.appearance.transparency.base property bool enabled: Config.appearance.transparency.enabled property real layers: Config.appearance.transparency.layers } }