blob: 2a6fa2f89aa99ba04ffc71bac8a9440d47e90ec8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
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}}"
}
|