pragma Singleton import QtQuick import Quickshell import Quickshell.Io Singleton { id: root /* Preset sizes for font, radii, ? */ // Font size property real fontSizeXXS: 8 property real fontSizeXS: 9 property real fontSizeS: 10 property real fontSizeM: 11 property real fontSizeL: 13 property real fontSizeXL: 16 property real fontSizeXXL: 18 property real fontSizeXXXL: 24 // Font weight property int fontWeightRegular: 400 property int fontWeightMedium: 500 property int fontWeightSemiBold: 600 property int fontWeightBold: 700 // Radii property int radiusXXS: 4 * Settings.data.general.radiusRatio property int radiusXS: 8 * Settings.data.general.radiusRatio property int radiusS: 12 * Settings.data.general.radiusRatio property int radiusM: 16 * Settings.data.general.radiusRatio property int radiusL: 20 * Settings.data.general.radiusRatio //screen Radii property int screenRadius: 20 * Settings.data.general.screenRadiusRatio // Border property int borderS: 3 property int borderM: 3 property int borderL: 3 // Margins (for margins and spacing) property int marginXXS: 2 property int marginXS: 4 property int marginS: 8 property int marginM: 12 property int marginL: 16 property int marginXL: 24 // Opacity property real opacityNone: 0.0 property real opacityLight: 0.25 property real opacityMedium: 0.5 property real opacityHeavy: 0.75 property real opacityAlmost: 0.95 property real opacityFull: 1.0 // Animation duration (ms) property int animationFast: Math.round(150 / Settings.data.general.animationSpeed) property int animationNormal: Math.round(300 / Settings.data.general.animationSpeed) property int animationSlow: Math.round(450 / Settings.data.general.animationSpeed) property int animationSlowest: Math.round(750 / Settings.data.general.animationSpeed) // Delays property int tooltipDelay: 300 property int tooltipDelayLong: 1200 property int pillDelay: 500 // Settings widgets base size property real baseWidgetSize: 33 property real sliderWidth: 200 // Bar Dimensions property real barHeight: { if (Settings.data.bar.density === "compact") { return (Settings.data.bar.position === "left" || Settings.data.bar.position === "right") ? 27 : 25 } if (Settings.data.bar.density === "default") { return (Settings.data.bar.position === "left" || Settings.data.bar.position === "right") ? 33 : 31 } if (Settings.data.bar.density === "comfortable") { return (Settings.data.bar.position === "left" || Settings.data.bar.position === "right") ? 39 : 37 } } property real capsuleHeight: { if (Settings.data.bar.density === "compact") { return barHeight * 0.85 } if (Settings.data.bar.density === "default") { return barHeight * 0.82 } if (Settings.data.bar.density === "comfortable") { return barHeight * 0.73 } } }