@diskette/palette 0.18.0 → 0.20.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +90 -70
- package/dist/cli/cli.d.ts +1 -1
- package/dist/cli/cli.js +59 -9
- package/dist/colors/amber.d.ts +21 -109
- package/dist/colors/amber.js +126 -109
- package/dist/colors/blue.d.ts +21 -109
- package/dist/colors/blue.js +126 -109
- package/dist/colors/bronze.d.ts +21 -109
- package/dist/colors/bronze.js +126 -109
- package/dist/colors/brown.d.ts +21 -109
- package/dist/colors/brown.js +126 -109
- package/dist/colors/crimson.d.ts +21 -109
- package/dist/colors/crimson.js +126 -109
- package/dist/colors/cyan.d.ts +21 -109
- package/dist/colors/cyan.js +126 -109
- package/dist/colors/gold.d.ts +21 -109
- package/dist/colors/gold.js +126 -109
- package/dist/colors/grass.d.ts +21 -109
- package/dist/colors/grass.js +126 -109
- package/dist/colors/gray.d.ts +21 -109
- package/dist/colors/gray.js +126 -109
- package/dist/colors/green.d.ts +21 -109
- package/dist/colors/green.js +126 -109
- package/dist/colors/indigo.d.ts +21 -109
- package/dist/colors/indigo.js +126 -109
- package/dist/colors/iris.d.ts +21 -109
- package/dist/colors/iris.js +126 -109
- package/dist/colors/jade.d.ts +21 -109
- package/dist/colors/jade.js +126 -109
- package/dist/colors/lime.d.ts +21 -109
- package/dist/colors/lime.js +126 -109
- package/dist/colors/mauve.d.ts +21 -109
- package/dist/colors/mauve.js +126 -109
- package/dist/colors/mint.d.ts +21 -109
- package/dist/colors/mint.js +126 -109
- package/dist/colors/olive.d.ts +21 -109
- package/dist/colors/olive.js +126 -109
- package/dist/colors/orange.d.ts +21 -109
- package/dist/colors/orange.js +126 -109
- package/dist/colors/pink.d.ts +21 -109
- package/dist/colors/pink.js +126 -109
- package/dist/colors/plum.d.ts +21 -109
- package/dist/colors/plum.js +126 -109
- package/dist/colors/purple.d.ts +21 -109
- package/dist/colors/purple.js +126 -109
- package/dist/colors/red.d.ts +21 -109
- package/dist/colors/red.js +126 -109
- package/dist/colors/ruby.d.ts +21 -109
- package/dist/colors/ruby.js +126 -109
- package/dist/colors/sage.d.ts +21 -109
- package/dist/colors/sage.js +126 -109
- package/dist/colors/sand.d.ts +21 -109
- package/dist/colors/sand.js +126 -109
- package/dist/colors/sky.d.ts +21 -109
- package/dist/colors/sky.js +126 -109
- package/dist/colors/slate.d.ts +21 -109
- package/dist/colors/slate.js +126 -109
- package/dist/colors/teal.d.ts +21 -109
- package/dist/colors/teal.js +126 -109
- package/dist/colors/tomato.d.ts +21 -109
- package/dist/colors/tomato.js +126 -109
- package/dist/colors/violet.d.ts +21 -109
- package/dist/colors/violet.js +126 -109
- package/dist/colors/yellow.d.ts +21 -109
- package/dist/colors/yellow.js +126 -109
- package/dist/css.d.ts +3 -2
- package/dist/css.js +28 -9
- package/dist/index.d.ts +716 -3444
- package/dist/index.js +2 -3
- package/dist/types.d.ts +24 -23
- package/dist/utils.d.ts +9 -0
- package/dist/utils.js +44 -0
- package/package.json +4 -3
- package/dist/cli/commands/generate.d.ts +0 -64
- package/dist/cli/commands/generate.js +0 -87
- package/dist/cli/commands/list.d.ts +0 -48
- package/dist/cli/commands/list.js +0 -33
package/dist/colors/gold.js
CHANGED
|
@@ -1,124 +1,141 @@
|
|
|
1
|
+
import {} from "../types.js";
|
|
1
2
|
export default {
|
|
2
|
-
|
|
3
|
+
name: 'gold',
|
|
4
|
+
indicator: 9,
|
|
5
|
+
contrast: 'white',
|
|
6
|
+
track: 9,
|
|
7
|
+
surface: {
|
|
3
8
|
light: {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
gold3: '#f2f0e7',
|
|
7
|
-
gold4: '#eae6db',
|
|
8
|
-
gold5: '#e1dccf',
|
|
9
|
-
gold6: '#d8d0bf',
|
|
10
|
-
gold7: '#cbc0aa',
|
|
11
|
-
gold8: '#b9a88d',
|
|
12
|
-
gold9: '#978365',
|
|
13
|
-
gold10: '#8c7a5e',
|
|
14
|
-
gold11: '#71624b',
|
|
15
|
-
gold12: '#3b352b',
|
|
16
|
-
goldA1: '#55550003',
|
|
17
|
-
goldA2: '#9d8a000d',
|
|
18
|
-
goldA3: '#75600018',
|
|
19
|
-
goldA4: '#6b4e0024',
|
|
20
|
-
goldA5: '#60460030',
|
|
21
|
-
goldA6: '#64440040',
|
|
22
|
-
goldA7: '#63420055',
|
|
23
|
-
goldA8: '#633d0072',
|
|
24
|
-
goldA9: '#5332009a',
|
|
25
|
-
goldA10: '#492d00a1',
|
|
26
|
-
goldA11: '#362100b4',
|
|
27
|
-
goldA12: '#130c00d4',
|
|
9
|
+
srgb: '#f9f8efcc',
|
|
10
|
+
p3: 'color(display-p3 0.9765 0.9725 0.9412 / 0.8)',
|
|
28
11
|
},
|
|
29
12
|
dark: {
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
gold3: '#24231f',
|
|
33
|
-
gold4: '#2d2b26',
|
|
34
|
-
gold5: '#38352e',
|
|
35
|
-
gold6: '#444039',
|
|
36
|
-
gold7: '#544f46',
|
|
37
|
-
gold8: '#696256',
|
|
38
|
-
gold9: '#978365',
|
|
39
|
-
gold10: '#a39073',
|
|
40
|
-
gold11: '#cbb99f',
|
|
41
|
-
gold12: '#e8e2d9',
|
|
42
|
-
goldA1: '#91911102',
|
|
43
|
-
goldA2: '#f9e29d0b',
|
|
44
|
-
goldA3: '#f8ecbb15',
|
|
45
|
-
goldA4: '#ffeec41e',
|
|
46
|
-
goldA5: '#feecc22a',
|
|
47
|
-
goldA6: '#feebcb37',
|
|
48
|
-
goldA7: '#ffedcd48',
|
|
49
|
-
goldA8: '#fdeaca5f',
|
|
50
|
-
goldA9: '#ffdba690',
|
|
51
|
-
goldA10: '#fedfb09d',
|
|
52
|
-
goldA11: '#fee7c6c8',
|
|
53
|
-
goldA12: '#fef7ede7',
|
|
13
|
+
srgb: '#25231d80',
|
|
14
|
+
p3: 'color(display-p3 0.1412 0.1333 0.1098 / 0.5)',
|
|
54
15
|
},
|
|
55
16
|
},
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
17
|
+
light: {
|
|
18
|
+
srgb: {
|
|
19
|
+
solid: [
|
|
20
|
+
'#fdfdfc',
|
|
21
|
+
'#faf9f2',
|
|
22
|
+
'#f2f0e7',
|
|
23
|
+
'#eae6db',
|
|
24
|
+
'#e1dccf',
|
|
25
|
+
'#d8d0bf',
|
|
26
|
+
'#cbc0aa',
|
|
27
|
+
'#b9a88d',
|
|
28
|
+
'#978365',
|
|
29
|
+
'#8c7a5e',
|
|
30
|
+
'#71624b',
|
|
31
|
+
'#3b352b',
|
|
32
|
+
],
|
|
33
|
+
alpha: [
|
|
34
|
+
'#55550003',
|
|
35
|
+
'#9d8a000d',
|
|
36
|
+
'#75600018',
|
|
37
|
+
'#6b4e0024',
|
|
38
|
+
'#60460030',
|
|
39
|
+
'#64440040',
|
|
40
|
+
'#63420055',
|
|
41
|
+
'#633d0072',
|
|
42
|
+
'#5332009a',
|
|
43
|
+
'#492d00a1',
|
|
44
|
+
'#362100b4',
|
|
45
|
+
'#130c00d4',
|
|
46
|
+
],
|
|
82
47
|
},
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
48
|
+
p3: {
|
|
49
|
+
solid: [
|
|
50
|
+
'color(display-p3 0.992 0.992 0.989)',
|
|
51
|
+
'color(display-p3 0.98 0.976 0.953)',
|
|
52
|
+
'color(display-p3 0.947 0.94 0.909)',
|
|
53
|
+
'color(display-p3 0.914 0.904 0.865)',
|
|
54
|
+
'color(display-p3 0.88 0.865 0.816)',
|
|
55
|
+
'color(display-p3 0.84 0.818 0.756)',
|
|
56
|
+
'color(display-p3 0.788 0.753 0.677)',
|
|
57
|
+
'color(display-p3 0.715 0.66 0.565)',
|
|
58
|
+
'color(display-p3 0.579 0.517 0.41)',
|
|
59
|
+
'color(display-p3 0.538 0.479 0.38)',
|
|
60
|
+
'color(display-p3 0.433 0.386 0.305)',
|
|
61
|
+
'color(display-p3 0.227 0.209 0.173)',
|
|
62
|
+
],
|
|
63
|
+
alpha: [
|
|
64
|
+
'color(display-p3 0.349 0.349 0.024 / 0.012)',
|
|
65
|
+
'color(display-p3 0.592 0.514 0.024 / 0.048)',
|
|
66
|
+
'color(display-p3 0.4 0.357 0.012 / 0.091)',
|
|
67
|
+
'color(display-p3 0.357 0.298 0.008 / 0.134)',
|
|
68
|
+
'color(display-p3 0.345 0.282 0.004 / 0.185)',
|
|
69
|
+
'color(display-p3 0.341 0.263 0.004 / 0.244)',
|
|
70
|
+
'color(display-p3 0.345 0.235 0.004 / 0.322)',
|
|
71
|
+
'color(display-p3 0.345 0.22 0.004 / 0.436)',
|
|
72
|
+
'color(display-p3 0.286 0.18 0 / 0.589)',
|
|
73
|
+
'color(display-p3 0.255 0.161 0 / 0.62)',
|
|
74
|
+
'color(display-p3 0.433 0.386 0.305)',
|
|
75
|
+
'color(display-p3 0.227 0.209 0.173)',
|
|
76
|
+
],
|
|
108
77
|
},
|
|
109
78
|
},
|
|
110
|
-
|
|
111
|
-
indicator: 'gold9',
|
|
112
|
-
track: 'gold9',
|
|
113
|
-
surface: {
|
|
79
|
+
dark: {
|
|
114
80
|
srgb: {
|
|
115
|
-
|
|
116
|
-
|
|
81
|
+
solid: [
|
|
82
|
+
'#121211',
|
|
83
|
+
'#1b1a17',
|
|
84
|
+
'#24231f',
|
|
85
|
+
'#2d2b26',
|
|
86
|
+
'#38352e',
|
|
87
|
+
'#444039',
|
|
88
|
+
'#544f46',
|
|
89
|
+
'#696256',
|
|
90
|
+
'#978365',
|
|
91
|
+
'#a39073',
|
|
92
|
+
'#cbb99f',
|
|
93
|
+
'#e8e2d9',
|
|
94
|
+
],
|
|
95
|
+
alpha: [
|
|
96
|
+
'#91911102',
|
|
97
|
+
'#f9e29d0b',
|
|
98
|
+
'#f8ecbb15',
|
|
99
|
+
'#ffeec41e',
|
|
100
|
+
'#feecc22a',
|
|
101
|
+
'#feebcb37',
|
|
102
|
+
'#ffedcd48',
|
|
103
|
+
'#fdeaca5f',
|
|
104
|
+
'#ffdba690',
|
|
105
|
+
'#fedfb09d',
|
|
106
|
+
'#fee7c6c8',
|
|
107
|
+
'#fef7ede7',
|
|
108
|
+
],
|
|
117
109
|
},
|
|
118
110
|
p3: {
|
|
119
|
-
|
|
120
|
-
|
|
111
|
+
solid: [
|
|
112
|
+
'color(display-p3 0.071 0.071 0.067)',
|
|
113
|
+
'color(display-p3 0.104 0.101 0.09)',
|
|
114
|
+
'color(display-p3 0.141 0.136 0.122)',
|
|
115
|
+
'color(display-p3 0.177 0.17 0.152)',
|
|
116
|
+
'color(display-p3 0.217 0.207 0.185)',
|
|
117
|
+
'color(display-p3 0.265 0.252 0.225)',
|
|
118
|
+
'color(display-p3 0.327 0.31 0.277)',
|
|
119
|
+
'color(display-p3 0.407 0.384 0.342)',
|
|
120
|
+
'color(display-p3 0.579 0.517 0.41)',
|
|
121
|
+
'color(display-p3 0.628 0.566 0.463)',
|
|
122
|
+
'color(display-p3 0.784 0.728 0.635)',
|
|
123
|
+
'color(display-p3 0.906 0.887 0.855)',
|
|
124
|
+
],
|
|
125
|
+
alpha: [
|
|
126
|
+
'color(display-p3 0.855 0.855 0.071 / 0.005)',
|
|
127
|
+
'color(display-p3 0.98 0.89 0.616 / 0.043)',
|
|
128
|
+
'color(display-p3 1 0.949 0.753 / 0.08)',
|
|
129
|
+
'color(display-p3 1 0.933 0.8 / 0.118)',
|
|
130
|
+
'color(display-p3 1 0.949 0.804 / 0.16)',
|
|
131
|
+
'color(display-p3 1 0.925 0.8 / 0.215)',
|
|
132
|
+
'color(display-p3 1 0.945 0.831 / 0.278)',
|
|
133
|
+
'color(display-p3 1 0.937 0.82 / 0.366)',
|
|
134
|
+
'color(display-p3 0.996 0.882 0.69 / 0.551)',
|
|
135
|
+
'color(display-p3 1 0.894 0.725 / 0.601)',
|
|
136
|
+
'color(display-p3 0.784 0.728 0.635)',
|
|
137
|
+
'color(display-p3 0.906 0.887 0.855)',
|
|
138
|
+
],
|
|
121
139
|
},
|
|
122
140
|
},
|
|
123
|
-
name: 'gold',
|
|
124
141
|
};
|
package/dist/colors/grass.d.ts
CHANGED
|
@@ -1,125 +1,37 @@
|
|
|
1
1
|
declare const _default: {
|
|
2
|
-
|
|
2
|
+
name: "grass";
|
|
3
|
+
indicator: number;
|
|
4
|
+
contrast: string;
|
|
5
|
+
track: number;
|
|
6
|
+
surface: {
|
|
3
7
|
light: {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
grass3: string;
|
|
7
|
-
grass4: string;
|
|
8
|
-
grass5: string;
|
|
9
|
-
grass6: string;
|
|
10
|
-
grass7: string;
|
|
11
|
-
grass8: string;
|
|
12
|
-
grass9: string;
|
|
13
|
-
grass10: string;
|
|
14
|
-
grass11: string;
|
|
15
|
-
grass12: string;
|
|
16
|
-
grassA1: string;
|
|
17
|
-
grassA2: string;
|
|
18
|
-
grassA3: string;
|
|
19
|
-
grassA4: string;
|
|
20
|
-
grassA5: string;
|
|
21
|
-
grassA6: string;
|
|
22
|
-
grassA7: string;
|
|
23
|
-
grassA8: string;
|
|
24
|
-
grassA9: string;
|
|
25
|
-
grassA10: string;
|
|
26
|
-
grassA11: string;
|
|
27
|
-
grassA12: string;
|
|
8
|
+
srgb: string;
|
|
9
|
+
p3: string;
|
|
28
10
|
};
|
|
29
11
|
dark: {
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
grass3: string;
|
|
33
|
-
grass4: string;
|
|
34
|
-
grass5: string;
|
|
35
|
-
grass6: string;
|
|
36
|
-
grass7: string;
|
|
37
|
-
grass8: string;
|
|
38
|
-
grass9: string;
|
|
39
|
-
grass10: string;
|
|
40
|
-
grass11: string;
|
|
41
|
-
grass12: string;
|
|
42
|
-
grassA1: string;
|
|
43
|
-
grassA2: string;
|
|
44
|
-
grassA3: string;
|
|
45
|
-
grassA4: string;
|
|
46
|
-
grassA5: string;
|
|
47
|
-
grassA6: string;
|
|
48
|
-
grassA7: string;
|
|
49
|
-
grassA8: string;
|
|
50
|
-
grassA9: string;
|
|
51
|
-
grassA10: string;
|
|
52
|
-
grassA11: string;
|
|
53
|
-
grassA12: string;
|
|
12
|
+
srgb: string;
|
|
13
|
+
p3: string;
|
|
54
14
|
};
|
|
55
15
|
};
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
grass3: string;
|
|
61
|
-
grass4: string;
|
|
62
|
-
grass5: string;
|
|
63
|
-
grass6: string;
|
|
64
|
-
grass7: string;
|
|
65
|
-
grass8: string;
|
|
66
|
-
grass9: string;
|
|
67
|
-
grass10: string;
|
|
68
|
-
grass11: string;
|
|
69
|
-
grass12: string;
|
|
70
|
-
grassA1: string;
|
|
71
|
-
grassA2: string;
|
|
72
|
-
grassA3: string;
|
|
73
|
-
grassA4: string;
|
|
74
|
-
grassA5: string;
|
|
75
|
-
grassA6: string;
|
|
76
|
-
grassA7: string;
|
|
77
|
-
grassA8: string;
|
|
78
|
-
grassA9: string;
|
|
79
|
-
grassA10: string;
|
|
80
|
-
grassA11: string;
|
|
81
|
-
grassA12: string;
|
|
16
|
+
light: {
|
|
17
|
+
srgb: {
|
|
18
|
+
solid: [string, string, string, string, string, string, string, string, string, string, string, string];
|
|
19
|
+
alpha: [string, string, string, string, string, string, string, string, string, string, string, string];
|
|
82
20
|
};
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
grass3: string;
|
|
87
|
-
grass4: string;
|
|
88
|
-
grass5: string;
|
|
89
|
-
grass6: string;
|
|
90
|
-
grass7: string;
|
|
91
|
-
grass8: string;
|
|
92
|
-
grass9: string;
|
|
93
|
-
grass10: string;
|
|
94
|
-
grass11: string;
|
|
95
|
-
grass12: string;
|
|
96
|
-
grassA1: string;
|
|
97
|
-
grassA2: string;
|
|
98
|
-
grassA3: string;
|
|
99
|
-
grassA4: string;
|
|
100
|
-
grassA5: string;
|
|
101
|
-
grassA6: string;
|
|
102
|
-
grassA7: string;
|
|
103
|
-
grassA8: string;
|
|
104
|
-
grassA9: string;
|
|
105
|
-
grassA10: string;
|
|
106
|
-
grassA11: string;
|
|
107
|
-
grassA12: string;
|
|
21
|
+
p3: {
|
|
22
|
+
solid: [string, string, string, string, string, string, string, string, string, string, string, string];
|
|
23
|
+
alpha: [string, string, string, string, string, string, string, string, string, string, string, string];
|
|
108
24
|
};
|
|
109
25
|
};
|
|
110
|
-
|
|
111
|
-
indicator: string;
|
|
112
|
-
track: string;
|
|
113
|
-
surface: {
|
|
26
|
+
dark: {
|
|
114
27
|
srgb: {
|
|
115
|
-
|
|
116
|
-
|
|
28
|
+
solid: [string, string, string, string, string, string, string, string, string, string, string, string];
|
|
29
|
+
alpha: [string, string, string, string, string, string, string, string, string, string, string, string];
|
|
117
30
|
};
|
|
118
31
|
p3: {
|
|
119
|
-
|
|
120
|
-
|
|
32
|
+
solid: [string, string, string, string, string, string, string, string, string, string, string, string];
|
|
33
|
+
alpha: [string, string, string, string, string, string, string, string, string, string, string, string];
|
|
121
34
|
};
|
|
122
35
|
};
|
|
123
|
-
name: "grass";
|
|
124
36
|
};
|
|
125
37
|
export default _default;
|
package/dist/colors/grass.js
CHANGED
|
@@ -1,124 +1,141 @@
|
|
|
1
|
+
import {} from "../types.js";
|
|
1
2
|
export default {
|
|
2
|
-
|
|
3
|
+
name: 'grass',
|
|
4
|
+
indicator: 9,
|
|
5
|
+
contrast: 'white',
|
|
6
|
+
track: 9,
|
|
7
|
+
surface: {
|
|
3
8
|
light: {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
grass3: '#e9f6e9',
|
|
7
|
-
grass4: '#daf1db',
|
|
8
|
-
grass5: '#c9e8ca',
|
|
9
|
-
grass6: '#b2ddb5',
|
|
10
|
-
grass7: '#94ce9a',
|
|
11
|
-
grass8: '#65ba74',
|
|
12
|
-
grass9: '#46a758',
|
|
13
|
-
grass10: '#3e9b4f',
|
|
14
|
-
grass11: '#2a7e3b',
|
|
15
|
-
grass12: '#203c25',
|
|
16
|
-
grassA1: '#00c00004',
|
|
17
|
-
grassA2: '#0099000a',
|
|
18
|
-
grassA3: '#00970016',
|
|
19
|
-
grassA4: '#009f0725',
|
|
20
|
-
grassA5: '#00930536',
|
|
21
|
-
grassA6: '#008f0a4d',
|
|
22
|
-
grassA7: '#018b0f6b',
|
|
23
|
-
grassA8: '#008d199a',
|
|
24
|
-
grassA9: '#008619b9',
|
|
25
|
-
grassA10: '#007b17c1',
|
|
26
|
-
grassA11: '#006514d5',
|
|
27
|
-
grassA12: '#002006df',
|
|
9
|
+
srgb: '#f3faf3cc',
|
|
10
|
+
p3: 'color(display-p3 0.9569 0.9804 0.9569 / 0.8)',
|
|
28
11
|
},
|
|
29
12
|
dark: {
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
grass3: '#1b2a1e',
|
|
33
|
-
grass4: '#1d3a24',
|
|
34
|
-
grass5: '#25482d',
|
|
35
|
-
grass6: '#2d5736',
|
|
36
|
-
grass7: '#366740',
|
|
37
|
-
grass8: '#3e7949',
|
|
38
|
-
grass9: '#46a758',
|
|
39
|
-
grass10: '#53b365',
|
|
40
|
-
grass11: '#71d083',
|
|
41
|
-
grass12: '#c2f0c2',
|
|
42
|
-
grassA1: '#00de1205',
|
|
43
|
-
grassA2: '#5ef7780a',
|
|
44
|
-
grassA3: '#70fe8c1b',
|
|
45
|
-
grassA4: '#57ff802c',
|
|
46
|
-
grassA5: '#68ff8b3b',
|
|
47
|
-
grassA6: '#71ff8f4b',
|
|
48
|
-
grassA7: '#77fd925d',
|
|
49
|
-
grassA8: '#77fd9070',
|
|
50
|
-
grassA9: '#65ff82a1',
|
|
51
|
-
grassA10: '#72ff8dae',
|
|
52
|
-
grassA11: '#89ff9fcd',
|
|
53
|
-
grassA12: '#ceffceef',
|
|
13
|
+
srgb: '#19231b80',
|
|
14
|
+
p3: 'color(display-p3 0.102 0.1333 0.102 / 0.5)',
|
|
54
15
|
},
|
|
55
16
|
},
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
17
|
+
light: {
|
|
18
|
+
srgb: {
|
|
19
|
+
solid: [
|
|
20
|
+
'#fbfefb',
|
|
21
|
+
'#f5fbf5',
|
|
22
|
+
'#e9f6e9',
|
|
23
|
+
'#daf1db',
|
|
24
|
+
'#c9e8ca',
|
|
25
|
+
'#b2ddb5',
|
|
26
|
+
'#94ce9a',
|
|
27
|
+
'#65ba74',
|
|
28
|
+
'#46a758',
|
|
29
|
+
'#3e9b4f',
|
|
30
|
+
'#2a7e3b',
|
|
31
|
+
'#203c25',
|
|
32
|
+
],
|
|
33
|
+
alpha: [
|
|
34
|
+
'#00c00004',
|
|
35
|
+
'#0099000a',
|
|
36
|
+
'#00970016',
|
|
37
|
+
'#009f0725',
|
|
38
|
+
'#00930536',
|
|
39
|
+
'#008f0a4d',
|
|
40
|
+
'#018b0f6b',
|
|
41
|
+
'#008d199a',
|
|
42
|
+
'#008619b9',
|
|
43
|
+
'#007b17c1',
|
|
44
|
+
'#006514d5',
|
|
45
|
+
'#002006df',
|
|
46
|
+
],
|
|
82
47
|
},
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
48
|
+
p3: {
|
|
49
|
+
solid: [
|
|
50
|
+
'color(display-p3 0.986 0.996 0.985)',
|
|
51
|
+
'color(display-p3 0.966 0.983 0.964)',
|
|
52
|
+
'color(display-p3 0.923 0.965 0.917)',
|
|
53
|
+
'color(display-p3 0.872 0.94 0.865)',
|
|
54
|
+
'color(display-p3 0.811 0.908 0.802)',
|
|
55
|
+
'color(display-p3 0.733 0.864 0.724)',
|
|
56
|
+
'color(display-p3 0.628 0.803 0.622)',
|
|
57
|
+
'color(display-p3 0.477 0.72 0.482)',
|
|
58
|
+
'color(display-p3 0.38 0.647 0.378)',
|
|
59
|
+
'color(display-p3 0.344 0.598 0.342)',
|
|
60
|
+
'color(display-p3 0.263 0.488 0.261)',
|
|
61
|
+
'color(display-p3 0.151 0.233 0.153)',
|
|
62
|
+
],
|
|
63
|
+
alpha: [
|
|
64
|
+
'color(display-p3 0.024 0.757 0.024 / 0.016)',
|
|
65
|
+
'color(display-p3 0.024 0.565 0.024 / 0.036)',
|
|
66
|
+
'color(display-p3 0.059 0.576 0.008 / 0.083)',
|
|
67
|
+
'color(display-p3 0.035 0.565 0.008 / 0.134)',
|
|
68
|
+
'color(display-p3 0.047 0.545 0.008 / 0.197)',
|
|
69
|
+
'color(display-p3 0.031 0.502 0.004 / 0.275)',
|
|
70
|
+
'color(display-p3 0.012 0.482 0.004 / 0.377)',
|
|
71
|
+
'color(display-p3 0 0.467 0.008 / 0.522)',
|
|
72
|
+
'color(display-p3 0.008 0.435 0 / 0.624)',
|
|
73
|
+
'color(display-p3 0.008 0.388 0 / 0.659)',
|
|
74
|
+
'color(display-p3 0.263 0.488 0.261)',
|
|
75
|
+
'color(display-p3 0.151 0.233 0.153)',
|
|
76
|
+
],
|
|
108
77
|
},
|
|
109
78
|
},
|
|
110
|
-
|
|
111
|
-
indicator: 'grass9',
|
|
112
|
-
track: 'grass9',
|
|
113
|
-
surface: {
|
|
79
|
+
dark: {
|
|
114
80
|
srgb: {
|
|
115
|
-
|
|
116
|
-
|
|
81
|
+
solid: [
|
|
82
|
+
'#0e1511',
|
|
83
|
+
'#141a15',
|
|
84
|
+
'#1b2a1e',
|
|
85
|
+
'#1d3a24',
|
|
86
|
+
'#25482d',
|
|
87
|
+
'#2d5736',
|
|
88
|
+
'#366740',
|
|
89
|
+
'#3e7949',
|
|
90
|
+
'#46a758',
|
|
91
|
+
'#53b365',
|
|
92
|
+
'#71d083',
|
|
93
|
+
'#c2f0c2',
|
|
94
|
+
],
|
|
95
|
+
alpha: [
|
|
96
|
+
'#00de1205',
|
|
97
|
+
'#5ef7780a',
|
|
98
|
+
'#70fe8c1b',
|
|
99
|
+
'#57ff802c',
|
|
100
|
+
'#68ff8b3b',
|
|
101
|
+
'#71ff8f4b',
|
|
102
|
+
'#77fd925d',
|
|
103
|
+
'#77fd9070',
|
|
104
|
+
'#65ff82a1',
|
|
105
|
+
'#72ff8dae',
|
|
106
|
+
'#89ff9fcd',
|
|
107
|
+
'#ceffceef',
|
|
108
|
+
],
|
|
117
109
|
},
|
|
118
110
|
p3: {
|
|
119
|
-
|
|
120
|
-
|
|
111
|
+
solid: [
|
|
112
|
+
'color(display-p3 0.062 0.083 0.067)',
|
|
113
|
+
'color(display-p3 0.083 0.103 0.085)',
|
|
114
|
+
'color(display-p3 0.118 0.163 0.122)',
|
|
115
|
+
'color(display-p3 0.142 0.225 0.15)',
|
|
116
|
+
'color(display-p3 0.178 0.279 0.186)',
|
|
117
|
+
'color(display-p3 0.217 0.337 0.224)',
|
|
118
|
+
'color(display-p3 0.258 0.4 0.264)',
|
|
119
|
+
'color(display-p3 0.302 0.47 0.305)',
|
|
120
|
+
'color(display-p3 0.38 0.647 0.378)',
|
|
121
|
+
'color(display-p3 0.426 0.694 0.426)',
|
|
122
|
+
'color(display-p3 0.535 0.807 0.542)',
|
|
123
|
+
'color(display-p3 0.797 0.936 0.776)',
|
|
124
|
+
],
|
|
125
|
+
alpha: [
|
|
126
|
+
'color(display-p3 0 0.992 0.071 / 0.017)',
|
|
127
|
+
'color(display-p3 0.482 0.996 0.584 / 0.038)',
|
|
128
|
+
'color(display-p3 0.549 0.992 0.588 / 0.106)',
|
|
129
|
+
'color(display-p3 0.51 0.996 0.557 / 0.169)',
|
|
130
|
+
'color(display-p3 0.553 1 0.588 / 0.227)',
|
|
131
|
+
'color(display-p3 0.584 1 0.608 / 0.29)',
|
|
132
|
+
'color(display-p3 0.604 1 0.616 / 0.358)',
|
|
133
|
+
'color(display-p3 0.608 1 0.62 / 0.433)',
|
|
134
|
+
'color(display-p3 0.573 1 0.569 / 0.622)',
|
|
135
|
+
'color(display-p3 0.6 0.996 0.6 / 0.673)',
|
|
136
|
+
'color(display-p3 0.535 0.807 0.542)',
|
|
137
|
+
'color(display-p3 0.797 0.936 0.776)',
|
|
138
|
+
],
|
|
121
139
|
},
|
|
122
140
|
},
|
|
123
|
-
name: 'grass',
|
|
124
141
|
};
|