summaryrefslogtreecommitdiff
path: root/services
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-08-11 15:14:04 +1000
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-08-11 15:14:04 +1000
commit0771aad11e5302f8829f1e5490bd936963606519 (patch)
tree8791fbade1005dcf6f212e18247a9d903075d84e /services
parentlock: add resources (diff)
downloadcaelestia-shell-0771aad11e5302f8829f1e5490bd936963606519.tar.gz
caelestia-shell-0771aad11e5302f8829f1e5490bd936963606519.tar.bz2
caelestia-shell-0771aad11e5302f8829f1e5490bd936963606519.zip
lock: add fetch + refactor os info
Diffstat (limited to 'services')
-rw-r--r--services/Colours.qml118
1 files changed, 67 insertions, 51 deletions
diff --git a/services/Colours.qml b/services/Colours.qml
index 568fc1f..8470cfa 100644
--- a/services/Colours.qml
+++ b/services/Colours.qml
@@ -68,7 +68,7 @@ Singleton {
}
for (const [name, colour] of Object.entries(scheme.colours)) {
- const propName = `m3${name}`;
+ const propName = name.startsWith("term") ? name : `m3${name}`;
if (colours.hasOwnProperty(propName))
colours[propName] = `#${colour}`;
}
@@ -157,59 +157,75 @@ Singleton {
}
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 m3primary_paletteKeyColor: "#a26387"
+ property color m3secondary_paletteKeyColor: "#8b6f7d"
+ property color m3tertiary_paletteKeyColor: "#9c6c53"
+ property color m3neutral_paletteKeyColor: "#7f7478"
+ property color m3neutral_variant_paletteKeyColor: "#827379"
+ property color m3background: "#181115"
+ property color m3onBackground: "#eddfe4"
+ property color m3surface: "#181115"
+ property color m3surfaceDim: "#181115"
+ property color m3surfaceBright: "#40373b"
+ property color m3surfaceContainerLowest: "#130c10"
+ property color m3surfaceContainerLow: "#211a1d"
+ property color m3surfaceContainer: "#251e21"
+ property color m3surfaceContainerHigh: "#30282b"
+ property color m3surfaceContainerHighest: "#3b3236"
+ property color m3onSurface: "#eddfe4"
+ property color m3surfaceVariant: "#504349"
+ property color m3onSurfaceVariant: "#d3c2c9"
+ property color m3inverseSurface: "#eddfe4"
+ property color m3inverseOnSurface: "#362e32"
+ property color m3outline: "#9c8d93"
+ property color m3outlineVariant: "#504349"
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 m3surfaceTint: "#fbb1d8"
+ property color m3primary: "#fbb1d8"
+ property color m3onPrimary: "#511d3e"
+ property color m3primaryContainer: "#6b3455"
+ property color m3onPrimaryContainer: "#ffd8ea"
+ property color m3inversePrimary: "#864b6e"
+ property color m3secondary: "#dfbecd"
+ property color m3onSecondary: "#402a36"
+ property color m3secondaryContainer: "#5a424f"
+ property color m3onSecondaryContainer: "#fcd9e9"
+ property color m3tertiary: "#f3ba9c"
+ property color m3onTertiary: "#4a2713"
+ property color m3tertiaryContainer: "#b8856a"
property color m3onTertiaryContainer: "#000000"
- property color m3error: "#EA8DC1"
+ property color m3error: "#ffb4ab"
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"
+ property color m3errorContainer: "#93000a"
+ property color m3onErrorContainer: "#ffdad6"
+ property color m3primaryFixed: "#ffd8ea"
+ property color m3primaryFixedDim: "#fbb1d8"
+ property color m3onPrimaryFixed: "#370728"
+ property color m3onPrimaryFixedVariant: "#6b3455"
+ property color m3secondaryFixed: "#fcd9e9"
+ property color m3secondaryFixedDim: "#dfbecd"
+ property color m3onSecondaryFixed: "#291520"
+ property color m3onSecondaryFixedVariant: "#58404c"
+ property color m3tertiaryFixed: "#ffdbca"
+ property color m3tertiaryFixedDim: "#f3ba9c"
+ property color m3onTertiaryFixed: "#311302"
+ property color m3onTertiaryFixedVariant: "#653d27"
+ property color term0: "#353434"
+ property color term1: "#fe45a7"
+ property color term2: "#ffbac0"
+ property color term3: "#ffdee3"
+ property color term4: "#b3a2d5"
+ property color term5: "#e491bd"
+ property color term6: "#ffba93"
+ property color term7: "#edd2d5"
+ property color term8: "#b29ea1"
+ property color term9: "#ff7db7"
+ property color term10: "#ffd2d5"
+ property color term11: "#fff1f2"
+ property color term12: "#babfdd"
+ property color term13: "#f3a9cd"
+ property color term14: "#ffd1c0"
+ property color term15: "#ffffff"
}
}