forked from Shanu-Kumawat/quickshell-overview
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquickshell-overview.qml
More file actions
41 lines (27 loc) · 1.76 KB
/
quickshell-overview.qml
File metadata and controls
41 lines (27 loc) · 1.76 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
import QtQuick
QtObject {
id: m3
property color m3primary: "{{colors.primary.default.hex}}"
property color m3onPrimary: "{{colors.on_primary.default.hex}}"
property color m3primaryContainer: "{{colors.primary_container.default.hex}}"
property color m3onPrimaryContainer: "{{colors.on_primary_container.default.hex}}"
property color m3secondary: "{{colors.secondary.default.hex}}"
property color m3onSecondary: "{{colors.on_secondary.default.hex}}"
property color m3secondaryContainer: "{{colors.secondary_container.default.hex}}"
property color m3onSecondaryContainer: "{{colors.on_secondary_container.default.hex}}"
property color m3background: "{{colors.background.default.hex}}"
property color m3onBackground: "{{colors.on_background.default.hex}}"
property color m3surface: "{{colors.surface.default.hex}}"
property color m3surfaceContainerLow: "{{colors.surface_container_low.default.hex}}"
property color m3surfaceContainer: "{{colors.surface_container.default.hex}}"
property color m3surfaceContainerHigh: "{{colors.surface_container_high.default.hex}}"
property color m3surfaceContainerHighest: "{{colors.surface_container_highest.default.hex}}"
property color m3onSurface: "{{colors.on_surface.default.hex}}"
property color m3surfaceVariant: "{{colors.surface_variant.default.hex}}"
property color m3onSurfaceVariant: "{{colors.on_surface_variant.default.hex}}"
property color m3inverseSurface: "{{colors.inverse_surface.default.hex}}"
property color m3inverseOnSurface: "{{colors.inverse_on_surface.default.hex}}"
property color m3outline: "{{colors.outline.default.hex}}"
property color m3outlineVariant: "{{colors.outline_variant.default.hex}}"
property color m3shadow: "#000000"
}