pragma Singleton pragma ComponentBehavior: Bound import qs.config import qs.utils import Quickshell import Quickshell.Io import QtQuick Singleton { id: root property bool showPreview property string scheme property string flavour readonly property bool light: showPreview ? previewLight : currentLight property bool currentLight property bool previewLight readonly property M3Palette palette: showPreview ? preview : current readonly property M3TPalette tPalette: M3TPalette {} readonly property M3Palette current: M3Palette {} readonly property M3Palette preview: M3Palette {} readonly property Transparency transparency: Transparency {} readonly property color wallColour: quantizer.colors[0] ?? "black" function getLuminance(c: color): real { if (c.r == 0 && c.g == 0 && c.b == 0) return 0; return Math.sqrt(0.299 * (c.r ** 2) + 0.587 * (c.g ** 2) + 0.114 * (c.b ** 2)); } function alterColour(c: color, a: real, layer: int): color { const wallLuminance = getLuminance(wallColour); const luminance = getLuminance(c); const offset = (!light || layer == 1 ? 1 : -layer / 2) * (light ? 0.2 : 0.3) * (1 - transparency.base) * (1 + wallLuminance * (light ? (layer == 1 ? 3 : 1) : 2.5)); const scale = (luminance + offset) / luminance; const r = Math.max(0, Math.min(1, c.r * scale)); const g = Math.max(0, Math.min(1, c.g * scale)); const b = Math.max(0, Math.min(1, c.b * scale)); return Qt.rgba(r, g, b, a); } function layer(c: color, layer: var): color { if (!transparency.enabled) return c; return layer === 0 ? Qt.alpha(c, transparency.base) : alterColour(c, transparency.layers, layer ?? 1); } function on(c: color): color { if (c.hslLightness < 0.5) return Qt.hsla(c.hslHue, c.hslSaturation, 0.9, 1); return Qt.hsla(c.hslHue, c.hslSaturation, 0.1, 1); } function load(data: string, isPreview: bool): void { const colours = isPreview ? preview : current; const scheme = JSON.parse(data); if (!isPreview) { root.scheme = scheme.name; flavour = scheme.flavour; currentLight = scheme.mode === "light"; } else { previewLight = scheme.mode === "light"; } for (const [name, colour] of Object.entries(scheme.colours)) { const propName = `m3${name}`; if (colours.hasOwnProperty(propName)) colours[propName] = `#${colour}`; } } function setMode(mode: string): void { Quickshell.execDetached(["caelestia", "scheme", "set", "--notify", "-m", mode]); } FileView { path: `${Paths.stringify(Paths.state)}/scheme.json` watchChanges: true onFileChanged: reload() onLoaded: root.load(text(), false) } ColorQuantizer { id: quantizer source: Qt.resolvedUrl(Wallpapers.current) depth: 0 rescaleSize: 128 } component Transparency: QtObject { readonly property bool enabled: Appearance.transparency.enabled readonly property real base: Appearance.transparency.base - (root.light ? 0.1 : 0) readonly property real layers: Appearance.transparency.layers } component M3TPalette: QtObject { readonly property color m3primary_paletteKeyColor: root.layer(root.palette.m3primary_paletteKeyColor) readonly property color m3secondary_paletteKeyColor: root.layer(root.palette.m3secondary_paletteKeyColor) readonly property color m3tertiary_paletteKeyColor: root.layer(root.palette.m3tertiary_paletteKeyColor) readonly property color m3neutral_paletteKeyColor: root.layer(root.palette.m3neutral_paletteKeyColor) readonly property color m3neutral_variant_paletteKeyColor: root.layer(root.palette.m3neutral_variant_paletteKeyColor) readonly property color m3background: root.layer(root.palette.m3background, 0) readonly property color m3onBackground: root.layer(root.palette.m3onBackground) readonly property color m3surface: root.layer(root.palette.m3surface, 0) readonly property color m3surfaceDim: root.layer(root.palette.m3surfaceDim, 0) readonly property color m3surfaceBright: root.layer(root.palette.m3surfaceBright, 0) readonly property color m3surfaceContainerLowest: root.layer(root.palette.m3surfaceContainerLowest) readonly property color m3surfaceContainerLow: root.layer(root.palette.m3surfaceContainerLow) readonly property color m3surfaceContainer: root.layer(root.palette.m3surfaceContainer) readonly property color m3surfaceContainerHigh: root.layer(root.palette.m3surfaceContainerHigh) readonly property color m3surfaceContainerHighest: root.layer(root.palette.m3surfaceContainerHighest) readonly property color m3onSurface: root.layer(root.palette.m3onSurface) readonly property color m3surfaceVariant: root.layer(root.palette.m3surfaceVariant, 0) readonly property color m3onSurfaceVariant: root.layer(root.palette.m3onSurfaceVariant) readonly property color m3inverseSurface: root.layer(root.palette.m3inverseSurface, 0) readonly property color m3inverseOnSurface: root.layer(root.palette.m3inverseOnSurface) readonly property color m3outline: root.layer(root.palette.m3outline) readonly property color m3outlineVariant: root.layer(root.palette.m3outlineVariant) readonly property color m3shadow: root.layer(root.palette.m3shadow) readonly property color m3scrim: root.layer(root.palette.m3scrim) readonly property color m3surfaceTint: root.layer(root.palette.m3surfaceTint) readonly property color m3primary: root.layer(root.palette.m3primary) readonly property color m3onPrimary: root.layer(root.palette.m3onPrimary) readonly property color m3primaryContainer: root.layer(root.palette.m3primaryContainer) readonly property color m3onPrimaryContainer: root.layer(root.palette.m3onPrimaryContainer) readonly property color m3inversePrimary: root.layer(root.palette.m3inversePrimary) readonly property color m3secondary: root.layer(root.palette.m3secondary) readonly property color m3onSecondary: root.layer(root.palette.m3onSecondary) readonly property color m3secondaryContainer: root.layer(root.palette.m3secondaryContainer) readonly property color m3onSecondaryContainer: root.layer(root.palette.m3onSecondaryContainer) readonly property color m3tertiary: root.layer(root.palette.m3tertiary) readonly property color m3onTertiary: root.layer(root.palette.m3onTertiary) readonly property color m3tertiaryContainer: root.layer(root.palette.m3tertiaryContainer) readonly property color m3onTertiaryContainer: root.layer(root.palette.m3onTertiaryContainer) readonly property color m3error: root.layer(root.palette.m3error) readonly property color m3onError: root.layer(root.palette.m3onError) readonly property color m3errorContainer: root.layer(root.palette.m3errorContainer) readonly property color m3onErrorContainer: root.layer(root.palette.m3onErrorContainer) readonly property color m3primaryFixed: root.layer(root.palette.m3primaryFixed) readonly property color m3primaryFixedDim: root.layer(root.palette.m3primaryFixedDim) readonly property color m3onPrimaryFixed: root.layer(root.palette.m3onPrimaryFixed) readonly property color m3onPrimaryFixedVariant: root.layer(root.palette.m3onPrimaryFixedVariant) readonly property color m3secondaryFixed: root.layer(root.palette.m3secondaryFixed) readonly property color m3secondaryFixedDim: root.layer(root.palette.m3secondaryFixedDim) readonly property color m3onSecondaryFixed: root.layer(root.palette.m3onSecondaryFixed) readonly property color m3onSecondaryFixedVariant: root.layer(root.palette.m3onSecondaryFixedVariant) readonly property color m3tertiaryFixed: root.layer(root.palette.m3tertiaryFixed) readonly property color m3tertiaryFixedDim: root.layer(root.palette.m3tertiaryFixedDim) readonly property color m3onTertiaryFixed: root.layer(root.palette.m3onTertiaryFixed) readonly property color m3onTertiaryFixedVariant: root.layer(root.palette.m3onTertiaryFixedVariant) } component M3Palette: QtObject { property color m3primary_paletteKeyColor: "#7870AB" property color m3secondary_paletteKeyColor: "#78748A" property color m3tertiary_paletteKeyColor: "#976A7D" property color m3neutral_paletteKeyColor: "#79767D" property color m3neutral_variant_paletteKeyColor: "#797680" property color m3background: "#141318" property color m3onBackground: "#E5E1E9" property color m3surface: "#141318" property color m3surfaceDim: "#141318" property color m3surfaceBright: "#3A383E" property color m3surfaceContainerLowest: "#0E0D13" property color m3surfaceContainerLow: "#1C1B20" property color m3surfaceContainer: "#201F25" property color m3surfaceContainerHigh: "#2B292F" property color m3surfaceContainerHighest: "#35343A" property color m3onSurface: "#E5E1E9" property color m3surfaceVariant: "#48454E" property color m3onSurfaceVariant: "#C9C5D0" property color m3inverseSurface: "#E5E1E9" property color m3inverseOnSurface: "#312F36" property color m3outline: "#938F99" property color m3outlineVariant: "#48454E" property color m3shadow: "#000000" property color m3scrim: "#000000" property color m3surfaceTint: "#C8BFFF" property color m3primary: "#C8BFFF" property color m3onPrimary: "#30285F" property color m3primaryContainer: "#473F77" property color m3onPrimaryContainer: "#E5DEFF" property color m3inversePrimary: "#5F5791" property color m3secondary: "#C9C3DC" property color m3onSecondary: "#312E41" property color m3secondaryContainer: "#484459" property color m3onSecondaryContainer: "#E5DFF9" property color m3tertiary: "#ECB8CD" property color m3onTertiary: "#482536" property color m3tertiaryContainer: "#B38397" property color m3onTertiaryContainer: "#000000" property color m3error: "#EA8DC1" property color m3onError: "#690005" property color m3errorContainer: "#93000A" property color m3onErrorContainer: "#FFDAD6" property color m3primaryFixed: "#E5DEFF" property color m3primaryFixedDim: "#C8BFFF" property color m3onPrimaryFixed: "#1B1149" property color m3onPrimaryFixedVariant: "#473F77" property color m3secondaryFixed: "#E5DFF9" property color m3secondaryFixedDim: "#C9C3DC" property color m3onSecondaryFixed: "#1C192B" property color m3onSecondaryFixedVariant: "#484459" property color m3tertiaryFixed: "#FFD8E7" property color m3tertiaryFixedDim: "#ECB8CD" property color m3onTertiaryFixed: "#301121" property color m3onTertiaryFixedVariant: "#613B4C" } }