-
Notifications
You must be signed in to change notification settings - Fork 103
/
Copy path.materialcolorsapp.json.example
56 lines (56 loc) · 1.38 KB
/
.materialcolorsapp.json.example
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"copyFormats": [
{
"format": "MATERIAL_COLOR_$HUE_$VALUE",
"transform": "_X"
},
{
"format": "$material-color('$HUE', '$VALUE');",
"transform": "-x"
},
{
"format": "$alpha($color$HUE$VALUE, '$ALPHA');",
"transform": "dXx"
}
],
"extraColors": {
"my-colors": {
"shorthand": "🏈",
"label": "My colors",
"pinned": false,
"colors": {
"brand": {
"_selectorDark": "#1A73E8",
"_selectorLight": "#1967D2",
"_groups": [
{
"title": "Primary",
"colors": [
{ "name": "Default", "hex": "#1A73E8" },
{ "name": "Dark", "hex": "#1967D2" }
]
}
]
},
"navy": {
"_selectorDark": "#6B829D",
"_selectorLight": "#476282",
"10": {"hex": "#F6F7F9"},
"20": {"hex": "#E5EAF0"},
"30": {"hex": "#D4DCE7"},
"40": {"hex": "#C3CFDD"},
"50": {"hex": "#B2C1D4"},
"100": {"hex": "#8EA1B9"},
"200": {"hex": "#6B829D"},
"300": {"hex": "#476282"},
"400": {"hex": "#385574"},
"500": {"hex": "#2A4865"},
"600": {"hex": "#1B3A57"},
"700": {"hex": "#0C2D48"},
"800": {"hex": "#051E34"},
"900": {"hex": "#031525"}
}
}
}
}
}