@new-ui/colors 0.1.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 +1 -0
- package/build-tokens.js +34 -0
- package/dist/themes/dark.css +136 -0
- package/dist/themes/light.css +136 -0
- package/help/dark.png +0 -0
- package/package.json +32 -0
- package/tokens/global/global.json +515 -0
- package/tokens/themes/dark/dark.json +6 -0
- package/tokens/themes/light/light.json +6 -0
package/README.md
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+

|
package/build-tokens.js
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
const StyleDictionary = require("style-dictionary");
|
|
2
|
+
const args = require("minimist")(process.argv.slice(2));
|
|
3
|
+
const theme = args.theme ? args.theme : "primary";
|
|
4
|
+
|
|
5
|
+
console.log(`🚧 Compiling tokens with the ${theme.toUpperCase()} theme`);
|
|
6
|
+
|
|
7
|
+
const getStyleDictionaryConfig = (theme) => {
|
|
8
|
+
return {
|
|
9
|
+
log: "warn",
|
|
10
|
+
source: [
|
|
11
|
+
"tokens/global/**/*.+(js|json)",
|
|
12
|
+
`tokens/themes/${theme}/**/*.+(js|json)`,
|
|
13
|
+
],
|
|
14
|
+
platforms: {
|
|
15
|
+
css: {
|
|
16
|
+
transformGroup: "css",
|
|
17
|
+
buildPath: "dist/themes/",
|
|
18
|
+
files: [
|
|
19
|
+
{
|
|
20
|
+
destination: `${theme}.css`,
|
|
21
|
+
format: "css/variables",
|
|
22
|
+
"options": {"outputReferences": true}
|
|
23
|
+
},
|
|
24
|
+
],
|
|
25
|
+
},
|
|
26
|
+
},
|
|
27
|
+
};
|
|
28
|
+
};
|
|
29
|
+
|
|
30
|
+
const StyleDictionaryExtended = StyleDictionary.extend(
|
|
31
|
+
getStyleDictionaryConfig(theme)
|
|
32
|
+
);
|
|
33
|
+
|
|
34
|
+
StyleDictionaryExtended.buildAllPlatforms();
|
|
@@ -0,0 +1,136 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Do not edit directly
|
|
3
|
+
* Generated on Fri, 02 Dec 2022 19:43:17 GMT
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
:root {
|
|
7
|
+
--white: hsl(0, 0%, 100%);
|
|
8
|
+
--black: hsl(0, 0%, 0%);
|
|
9
|
+
--cold10: hsl(206, 16%, 8%);
|
|
10
|
+
--cold09: hsl(200, 12%, 15%);
|
|
11
|
+
--cold08: hsl(207, 10%, 23%);
|
|
12
|
+
--cold07: hsl(207, 7%, 32%);
|
|
13
|
+
--cold06: hsl(210, 6%, 44%);
|
|
14
|
+
--cold05: hsl(216, 7%, 56%);
|
|
15
|
+
--cold04: hsl(210, 8%, 66%);
|
|
16
|
+
--cold03: hsl(210, 11%, 78%);
|
|
17
|
+
--cold02: hsl(213, 15%, 88%);
|
|
18
|
+
--cold01: hsl(220, 30%, 96%);
|
|
19
|
+
--warm10: hsl(0, 7%, 8%);
|
|
20
|
+
--warm09: hsl(0, 3%, 15%);
|
|
21
|
+
--warm08: hsl(0, 3%, 23%);
|
|
22
|
+
--warm07: hsl(0, 3%, 33%);
|
|
23
|
+
--warm06: hsl(0, 2%, 44%);
|
|
24
|
+
--warm05: hsl(0, 2%, 55%);
|
|
25
|
+
--warm04: hsl(0, 3%, 67%);
|
|
26
|
+
--warm03: hsl(10, 5%, 78%);
|
|
27
|
+
--warm02: hsl(10, 10%, 89%);
|
|
28
|
+
--warm01: hsl(12, 24%, 96%);
|
|
29
|
+
--grey10: hsl(0, 0%, 9%);
|
|
30
|
+
--grey09: hsl(0, 0%, 15%);
|
|
31
|
+
--grey08: hsl(0, 0%, 22%);
|
|
32
|
+
--grey07: hsl(0, 0%, 32%);
|
|
33
|
+
--grey06: hsl(0, 0%, 44%);
|
|
34
|
+
--grey05: hsl(0, 0%, 55%);
|
|
35
|
+
--grey04: hsl(0, 0%, 66%);
|
|
36
|
+
--grey03: hsl(0, 0%, 78%);
|
|
37
|
+
--grey02: hsl(0, 0%, 88%);
|
|
38
|
+
--grey01: hsl(0, 0%, 96%);
|
|
39
|
+
--brown08: hsl(35, 27%, 14%);
|
|
40
|
+
--brown07: hsl(34, 26%, 26%);
|
|
41
|
+
--brown06: hsl(33, 26%, 38%);
|
|
42
|
+
--brown05: hsl(34, 27%, 50%);
|
|
43
|
+
--brown04: hsl(34, 26%, 54%);
|
|
44
|
+
--brown03: hsl(34, 26%, 74%);
|
|
45
|
+
--brown02: hsl(35, 27%, 86%);
|
|
46
|
+
--brown01: hsl(33, 29%, 94%);
|
|
47
|
+
--pink08: hsl(349, 69%, 16%);
|
|
48
|
+
--pink07: hsl(349, 71%, 31%);
|
|
49
|
+
--pink06: hsl(348, 70%, 45%);
|
|
50
|
+
--pink05: hsl(349, 100%, 59%);
|
|
51
|
+
--pink04: hsl(349, 100%, 62%);
|
|
52
|
+
--pink03: hsl(349, 100%, 78%);
|
|
53
|
+
--pink02: hsl(349, 100%, 89%);
|
|
54
|
+
--pink01: hsl(348, 100%, 95%);
|
|
55
|
+
--purple08: hsl(280, 46%, 17%);
|
|
56
|
+
--purple07: hsl(279, 46%, 31%);
|
|
57
|
+
--purple06: hsl(280, 46%, 45%);
|
|
58
|
+
--purple05: hsl(280, 68%, 60%);
|
|
59
|
+
--purple04: hsl(280, 68%, 63%);
|
|
60
|
+
--purple03: hsl(279, 68%, 79%);
|
|
61
|
+
--purple02: hsl(280, 68%, 89%);
|
|
62
|
+
--purple01: hsl(279, 68%, 95%);
|
|
63
|
+
--indigo08: hsl(242, 43%, 16%);
|
|
64
|
+
--indigo07: hsl(241, 43%, 31%);
|
|
65
|
+
--indigo06: hsl(241, 43%, 45%);
|
|
66
|
+
--indigo05: hsl(241, 61%, 59%);
|
|
67
|
+
--indigo04: hsl(241, 61%, 62%);
|
|
68
|
+
--indigo03: hsl(241, 61%, 79%);
|
|
69
|
+
--indigo02: hsl(242, 62%, 89%);
|
|
70
|
+
--indigo01: hsl(244, 62%, 95%);
|
|
71
|
+
--blue08: hsl(211, 100%, 14%);
|
|
72
|
+
--blue07: hsl(211, 100%, 26%);
|
|
73
|
+
--blue06: hsl(211, 100%, 38%);
|
|
74
|
+
--blue05: hsl(211, 100%, 50%);
|
|
75
|
+
--blue04: hsl(211, 100%, 54%);
|
|
76
|
+
--blue03: hsl(211, 100%, 74%);
|
|
77
|
+
--blue02: hsl(211, 100%, 86%);
|
|
78
|
+
--blue01: hsl(211, 100%, 94%);
|
|
79
|
+
--cyan08: hsl(199, 64%, 15%);
|
|
80
|
+
--cyan07: hsl(199, 64%, 29%);
|
|
81
|
+
--cyan06: hsl(199, 64%, 42%);
|
|
82
|
+
--cyan05: hsl(199, 78%, 55%);
|
|
83
|
+
--cyan04: hsl(199, 78%, 58%);
|
|
84
|
+
--cyan03: hsl(199, 78%, 76%);
|
|
85
|
+
--cyan02: hsl(199, 78%, 87%);
|
|
86
|
+
--cyan01: hsl(199, 79%, 95%);
|
|
87
|
+
--teal08: hsl(189, 62%, 13%);
|
|
88
|
+
--teal07: hsl(189, 61%, 25%);
|
|
89
|
+
--teal06: hsl(189, 61%, 37%);
|
|
90
|
+
--teal05: hsl(189, 61%, 48%);
|
|
91
|
+
--teal04: hsl(189, 57%, 52%);
|
|
92
|
+
--teal03: hsl(189, 58%, 73%);
|
|
93
|
+
--teal02: hsl(189, 57%, 85%);
|
|
94
|
+
--teal01: hsl(190, 56%, 94%);
|
|
95
|
+
--mint08: hsl(178, 100%, 11%);
|
|
96
|
+
--mint07: hsl(177, 100%, 20%);
|
|
97
|
+
--mint06: hsl(178, 100%, 30%);
|
|
98
|
+
--mint05: hsl(177, 100%, 39%);
|
|
99
|
+
--mint04: hsl(177, 82%, 44%);
|
|
100
|
+
--mint03: hsl(177, 64%, 68%);
|
|
101
|
+
--mint02: hsl(178, 63%, 83%);
|
|
102
|
+
--mint01: hsl(178, 63%, 93%);
|
|
103
|
+
--green08: hsl(136, 59%, 14%);
|
|
104
|
+
--green07: hsl(135, 59%, 26%);
|
|
105
|
+
--green06: hsl(135, 58%, 37%);
|
|
106
|
+
--green05: hsl(135, 59%, 49%);
|
|
107
|
+
--green04: hsl(135, 56%, 53%);
|
|
108
|
+
--green03: hsl(135, 57%, 74%);
|
|
109
|
+
--green02: hsl(136, 56%, 86%);
|
|
110
|
+
--green01: hsl(137, 56%, 94%);
|
|
111
|
+
--yellow08: hsl(48, 100%, 14%);
|
|
112
|
+
--yellow07: hsl(48, 100%, 26%);
|
|
113
|
+
--yellow06: hsl(48, 100%, 38%);
|
|
114
|
+
--yellow05: hsl(48, 100%, 50%);
|
|
115
|
+
--yellow04: hsl(48, 100%, 54%);
|
|
116
|
+
--yellow03: hsl(48, 100%, 74%);
|
|
117
|
+
--yellow02: hsl(48, 100%, 86%);
|
|
118
|
+
--yellow01: hsl(48, 100%, 94%);
|
|
119
|
+
--orange08: hsl(35, 100%, 14%);
|
|
120
|
+
--orange07: hsl(35, 100%, 26%);
|
|
121
|
+
--orange06: hsl(35, 100%, 38%);
|
|
122
|
+
--orange05: hsl(35, 100%, 50%);
|
|
123
|
+
--orange04: hsl(35, 100%, 54%);
|
|
124
|
+
--orange03: hsl(35, 100%, 74%);
|
|
125
|
+
--orange02: hsl(35, 100%, 86%);
|
|
126
|
+
--orange01: hsl(35, 100%, 94%);
|
|
127
|
+
--red08: hsl(2, 68%, 7%);
|
|
128
|
+
--red07: hsl(3, 69%, 16%);
|
|
129
|
+
--red06: hsl(3, 68%, 31%);
|
|
130
|
+
--red05: hsl(3, 100%, 59%);
|
|
131
|
+
--red04: hsl(3, 100%, 63%);
|
|
132
|
+
--red03: hsl(3, 100%, 79%);
|
|
133
|
+
--red02: hsl(3, 100%, 89%);
|
|
134
|
+
--red01: hsl(2, 100%, 95%);
|
|
135
|
+
--background: var(--grey10);
|
|
136
|
+
}
|
|
@@ -0,0 +1,136 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Do not edit directly
|
|
3
|
+
* Generated on Fri, 02 Dec 2022 19:43:03 GMT
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
:root {
|
|
7
|
+
--white: hsl(0, 0%, 100%);
|
|
8
|
+
--black: hsl(0, 0%, 0%);
|
|
9
|
+
--cold10: hsl(206, 16%, 8%);
|
|
10
|
+
--cold09: hsl(200, 12%, 15%);
|
|
11
|
+
--cold08: hsl(207, 10%, 23%);
|
|
12
|
+
--cold07: hsl(207, 7%, 32%);
|
|
13
|
+
--cold06: hsl(210, 6%, 44%);
|
|
14
|
+
--cold05: hsl(216, 7%, 56%);
|
|
15
|
+
--cold04: hsl(210, 8%, 66%);
|
|
16
|
+
--cold03: hsl(210, 11%, 78%);
|
|
17
|
+
--cold02: hsl(213, 15%, 88%);
|
|
18
|
+
--cold01: hsl(220, 30%, 96%);
|
|
19
|
+
--warm10: hsl(0, 7%, 8%);
|
|
20
|
+
--warm09: hsl(0, 3%, 15%);
|
|
21
|
+
--warm08: hsl(0, 3%, 23%);
|
|
22
|
+
--warm07: hsl(0, 3%, 33%);
|
|
23
|
+
--warm06: hsl(0, 2%, 44%);
|
|
24
|
+
--warm05: hsl(0, 2%, 55%);
|
|
25
|
+
--warm04: hsl(0, 3%, 67%);
|
|
26
|
+
--warm03: hsl(10, 5%, 78%);
|
|
27
|
+
--warm02: hsl(10, 10%, 89%);
|
|
28
|
+
--warm01: hsl(12, 24%, 96%);
|
|
29
|
+
--grey10: hsl(0, 0%, 9%);
|
|
30
|
+
--grey09: hsl(0, 0%, 15%);
|
|
31
|
+
--grey08: hsl(0, 0%, 22%);
|
|
32
|
+
--grey07: hsl(0, 0%, 32%);
|
|
33
|
+
--grey06: hsl(0, 0%, 44%);
|
|
34
|
+
--grey05: hsl(0, 0%, 55%);
|
|
35
|
+
--grey04: hsl(0, 0%, 66%);
|
|
36
|
+
--grey03: hsl(0, 0%, 78%);
|
|
37
|
+
--grey02: hsl(0, 0%, 88%);
|
|
38
|
+
--grey01: hsl(0, 0%, 96%);
|
|
39
|
+
--brown08: hsl(35, 27%, 14%);
|
|
40
|
+
--brown07: hsl(34, 26%, 26%);
|
|
41
|
+
--brown06: hsl(33, 26%, 38%);
|
|
42
|
+
--brown05: hsl(34, 27%, 50%);
|
|
43
|
+
--brown04: hsl(34, 26%, 54%);
|
|
44
|
+
--brown03: hsl(34, 26%, 74%);
|
|
45
|
+
--brown02: hsl(35, 27%, 86%);
|
|
46
|
+
--brown01: hsl(33, 29%, 94%);
|
|
47
|
+
--pink08: hsl(349, 69%, 16%);
|
|
48
|
+
--pink07: hsl(349, 71%, 31%);
|
|
49
|
+
--pink06: hsl(348, 70%, 45%);
|
|
50
|
+
--pink05: hsl(349, 100%, 59%);
|
|
51
|
+
--pink04: hsl(349, 100%, 62%);
|
|
52
|
+
--pink03: hsl(349, 100%, 78%);
|
|
53
|
+
--pink02: hsl(349, 100%, 89%);
|
|
54
|
+
--pink01: hsl(348, 100%, 95%);
|
|
55
|
+
--purple08: hsl(280, 46%, 17%);
|
|
56
|
+
--purple07: hsl(279, 46%, 31%);
|
|
57
|
+
--purple06: hsl(280, 46%, 45%);
|
|
58
|
+
--purple05: hsl(280, 68%, 60%);
|
|
59
|
+
--purple04: hsl(280, 68%, 63%);
|
|
60
|
+
--purple03: hsl(279, 68%, 79%);
|
|
61
|
+
--purple02: hsl(280, 68%, 89%);
|
|
62
|
+
--purple01: hsl(279, 68%, 95%);
|
|
63
|
+
--indigo08: hsl(242, 43%, 16%);
|
|
64
|
+
--indigo07: hsl(241, 43%, 31%);
|
|
65
|
+
--indigo06: hsl(241, 43%, 45%);
|
|
66
|
+
--indigo05: hsl(241, 61%, 59%);
|
|
67
|
+
--indigo04: hsl(241, 61%, 62%);
|
|
68
|
+
--indigo03: hsl(241, 61%, 79%);
|
|
69
|
+
--indigo02: hsl(242, 62%, 89%);
|
|
70
|
+
--indigo01: hsl(244, 62%, 95%);
|
|
71
|
+
--blue08: hsl(211, 100%, 14%);
|
|
72
|
+
--blue07: hsl(211, 100%, 26%);
|
|
73
|
+
--blue06: hsl(211, 100%, 38%);
|
|
74
|
+
--blue05: hsl(211, 100%, 50%);
|
|
75
|
+
--blue04: hsl(211, 100%, 54%);
|
|
76
|
+
--blue03: hsl(211, 100%, 74%);
|
|
77
|
+
--blue02: hsl(211, 100%, 86%);
|
|
78
|
+
--blue01: hsl(211, 100%, 94%);
|
|
79
|
+
--cyan08: hsl(199, 64%, 15%);
|
|
80
|
+
--cyan07: hsl(199, 64%, 29%);
|
|
81
|
+
--cyan06: hsl(199, 64%, 42%);
|
|
82
|
+
--cyan05: hsl(199, 78%, 55%);
|
|
83
|
+
--cyan04: hsl(199, 78%, 58%);
|
|
84
|
+
--cyan03: hsl(199, 78%, 76%);
|
|
85
|
+
--cyan02: hsl(199, 78%, 87%);
|
|
86
|
+
--cyan01: hsl(199, 79%, 95%);
|
|
87
|
+
--teal08: hsl(189, 62%, 13%);
|
|
88
|
+
--teal07: hsl(189, 61%, 25%);
|
|
89
|
+
--teal06: hsl(189, 61%, 37%);
|
|
90
|
+
--teal05: hsl(189, 61%, 48%);
|
|
91
|
+
--teal04: hsl(189, 57%, 52%);
|
|
92
|
+
--teal03: hsl(189, 58%, 73%);
|
|
93
|
+
--teal02: hsl(189, 57%, 85%);
|
|
94
|
+
--teal01: hsl(190, 56%, 94%);
|
|
95
|
+
--mint08: hsl(178, 100%, 11%);
|
|
96
|
+
--mint07: hsl(177, 100%, 20%);
|
|
97
|
+
--mint06: hsl(178, 100%, 30%);
|
|
98
|
+
--mint05: hsl(177, 100%, 39%);
|
|
99
|
+
--mint04: hsl(177, 82%, 44%);
|
|
100
|
+
--mint03: hsl(177, 64%, 68%);
|
|
101
|
+
--mint02: hsl(178, 63%, 83%);
|
|
102
|
+
--mint01: hsl(178, 63%, 93%);
|
|
103
|
+
--green08: hsl(136, 59%, 14%);
|
|
104
|
+
--green07: hsl(135, 59%, 26%);
|
|
105
|
+
--green06: hsl(135, 58%, 37%);
|
|
106
|
+
--green05: hsl(135, 59%, 49%);
|
|
107
|
+
--green04: hsl(135, 56%, 53%);
|
|
108
|
+
--green03: hsl(135, 57%, 74%);
|
|
109
|
+
--green02: hsl(136, 56%, 86%);
|
|
110
|
+
--green01: hsl(137, 56%, 94%);
|
|
111
|
+
--yellow08: hsl(48, 100%, 14%);
|
|
112
|
+
--yellow07: hsl(48, 100%, 26%);
|
|
113
|
+
--yellow06: hsl(48, 100%, 38%);
|
|
114
|
+
--yellow05: hsl(48, 100%, 50%);
|
|
115
|
+
--yellow04: hsl(48, 100%, 54%);
|
|
116
|
+
--yellow03: hsl(48, 100%, 74%);
|
|
117
|
+
--yellow02: hsl(48, 100%, 86%);
|
|
118
|
+
--yellow01: hsl(48, 100%, 94%);
|
|
119
|
+
--orange08: hsl(35, 100%, 14%);
|
|
120
|
+
--orange07: hsl(35, 100%, 26%);
|
|
121
|
+
--orange06: hsl(35, 100%, 38%);
|
|
122
|
+
--orange05: hsl(35, 100%, 50%);
|
|
123
|
+
--orange04: hsl(35, 100%, 54%);
|
|
124
|
+
--orange03: hsl(35, 100%, 74%);
|
|
125
|
+
--orange02: hsl(35, 100%, 86%);
|
|
126
|
+
--orange01: hsl(35, 100%, 94%);
|
|
127
|
+
--red08: hsl(2, 68%, 7%);
|
|
128
|
+
--red07: hsl(3, 69%, 16%);
|
|
129
|
+
--red06: hsl(3, 68%, 31%);
|
|
130
|
+
--red05: hsl(3, 100%, 59%);
|
|
131
|
+
--red04: hsl(3, 100%, 63%);
|
|
132
|
+
--red03: hsl(3, 100%, 79%);
|
|
133
|
+
--red02: hsl(3, 100%, 89%);
|
|
134
|
+
--red01: hsl(2, 100%, 95%);
|
|
135
|
+
--background: var(--white);
|
|
136
|
+
}
|
package/help/dark.png
ADDED
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@new-ui/colors",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"build:tokens": "node ./build-tokens.js"
|
|
8
|
+
},
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "git+https://github.com/NewDesignFile/colors.git"
|
|
12
|
+
},
|
|
13
|
+
"keywords": [
|
|
14
|
+
"colors",
|
|
15
|
+
"color-palette",
|
|
16
|
+
"themes",
|
|
17
|
+
"tokens",
|
|
18
|
+
"tokens-translation",
|
|
19
|
+
"design-tokens",
|
|
20
|
+
"design-system",
|
|
21
|
+
"color-system"
|
|
22
|
+
],
|
|
23
|
+
"author": "Abhimanyu Rana",
|
|
24
|
+
"license": "MIT",
|
|
25
|
+
"bugs": {
|
|
26
|
+
"url": "https://github.com/NewDesignFile/colors/issues"
|
|
27
|
+
},
|
|
28
|
+
"homepage": "https://github.com/NewDesignFile/colors#readme",
|
|
29
|
+
"devDependencies": {
|
|
30
|
+
"style-dictionary": "^3.7.1"
|
|
31
|
+
}
|
|
32
|
+
}
|
|
@@ -0,0 +1,515 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$red01": {
|
|
3
|
+
"value": "hsl(2, 100%, 95%)",
|
|
4
|
+
"type": "color"
|
|
5
|
+
},
|
|
6
|
+
"$red02": {
|
|
7
|
+
"value": "hsl(3, 100%, 89%)",
|
|
8
|
+
"type": "color"
|
|
9
|
+
},
|
|
10
|
+
"$red03": {
|
|
11
|
+
"value": "hsl(3, 100%, 79%)",
|
|
12
|
+
"type": "color"
|
|
13
|
+
},
|
|
14
|
+
"$red04": {
|
|
15
|
+
"value": "hsl(3, 100%, 63%)",
|
|
16
|
+
"type": "color"
|
|
17
|
+
},
|
|
18
|
+
"$red05": {
|
|
19
|
+
"value": "hsl(3, 100%, 59%)",
|
|
20
|
+
"type": "color"
|
|
21
|
+
},
|
|
22
|
+
"$red06": {
|
|
23
|
+
"value": "hsl(3, 68%, 31%)",
|
|
24
|
+
"type": "color"
|
|
25
|
+
},
|
|
26
|
+
"$red07": {
|
|
27
|
+
"value": "hsl(3, 69%, 16%)",
|
|
28
|
+
"type": "color"
|
|
29
|
+
},
|
|
30
|
+
"$red08": {
|
|
31
|
+
"value": "hsl(2, 68%, 7%)",
|
|
32
|
+
"type": "color"
|
|
33
|
+
},
|
|
34
|
+
"$orange01": {
|
|
35
|
+
"value": "hsl(35, 100%, 94%)",
|
|
36
|
+
"type": "color"
|
|
37
|
+
},
|
|
38
|
+
"$orange02": {
|
|
39
|
+
"value": "hsl(35, 100%, 86%)",
|
|
40
|
+
"type": "color"
|
|
41
|
+
},
|
|
42
|
+
"$orange03": {
|
|
43
|
+
"value": "hsl(35, 100%, 74%)",
|
|
44
|
+
"type": "color"
|
|
45
|
+
},
|
|
46
|
+
"$orange04": {
|
|
47
|
+
"value": "hsl(35, 100%, 54%)",
|
|
48
|
+
"type": "color"
|
|
49
|
+
},
|
|
50
|
+
"$orange05": {
|
|
51
|
+
"value": "hsl(35, 100%, 50%)",
|
|
52
|
+
"type": "color"
|
|
53
|
+
},
|
|
54
|
+
"$orange06": {
|
|
55
|
+
"value": "hsl(35, 100%, 38%)",
|
|
56
|
+
"type": "color"
|
|
57
|
+
},
|
|
58
|
+
"$orange07": {
|
|
59
|
+
"value": "hsl(35, 100%, 26%)",
|
|
60
|
+
"type": "color"
|
|
61
|
+
},
|
|
62
|
+
"$orange08": {
|
|
63
|
+
"value": "hsl(35, 100%, 14%)",
|
|
64
|
+
"type": "color"
|
|
65
|
+
},
|
|
66
|
+
"$yellow01": {
|
|
67
|
+
"value": "hsl(48, 100%, 94%)",
|
|
68
|
+
"type": "color"
|
|
69
|
+
},
|
|
70
|
+
"$yellow02": {
|
|
71
|
+
"value": "hsl(48, 100%, 86%)",
|
|
72
|
+
"type": "color"
|
|
73
|
+
},
|
|
74
|
+
"$yellow03": {
|
|
75
|
+
"value": "hsl(48, 100%, 74%)",
|
|
76
|
+
"type": "color"
|
|
77
|
+
},
|
|
78
|
+
"$yellow04": {
|
|
79
|
+
"value": "hsl(48, 100%, 54%)",
|
|
80
|
+
"type": "color"
|
|
81
|
+
},
|
|
82
|
+
"$yellow05": {
|
|
83
|
+
"value": "hsl(48, 100%, 50%)",
|
|
84
|
+
"type": "color"
|
|
85
|
+
},
|
|
86
|
+
"$yellow06": {
|
|
87
|
+
"value": "hsl(48, 100%, 38%)",
|
|
88
|
+
"type": "color"
|
|
89
|
+
},
|
|
90
|
+
"$yellow07": {
|
|
91
|
+
"value": "hsl(48, 100%, 26%)",
|
|
92
|
+
"type": "color"
|
|
93
|
+
},
|
|
94
|
+
"$yellow08": {
|
|
95
|
+
"value": "hsl(48, 100%, 14%)",
|
|
96
|
+
"type": "color"
|
|
97
|
+
},
|
|
98
|
+
"$green01": {
|
|
99
|
+
"value": "hsl(137, 56%, 94%)",
|
|
100
|
+
"type": "color"
|
|
101
|
+
},
|
|
102
|
+
"$green02": {
|
|
103
|
+
"value": "hsl(136, 56%, 86%)",
|
|
104
|
+
"type": "color"
|
|
105
|
+
},
|
|
106
|
+
"$green03": {
|
|
107
|
+
"value": "hsl(135, 57%, 74%)",
|
|
108
|
+
"type": "color"
|
|
109
|
+
},
|
|
110
|
+
"$green04": {
|
|
111
|
+
"value": "hsl(135, 56%, 53%)",
|
|
112
|
+
"type": "color"
|
|
113
|
+
},
|
|
114
|
+
"$green05": {
|
|
115
|
+
"value": "hsl(135, 59%, 49%)",
|
|
116
|
+
"type": "color"
|
|
117
|
+
},
|
|
118
|
+
"$green06": {
|
|
119
|
+
"value": "hsl(135, 58%, 37%)",
|
|
120
|
+
"type": "color"
|
|
121
|
+
},
|
|
122
|
+
"$green07": {
|
|
123
|
+
"value": "hsl(135, 59%, 26%)",
|
|
124
|
+
"type": "color"
|
|
125
|
+
},
|
|
126
|
+
"$green08": {
|
|
127
|
+
"value": "hsl(136, 59%, 14%)",
|
|
128
|
+
"type": "color"
|
|
129
|
+
},
|
|
130
|
+
"$mint01": {
|
|
131
|
+
"value": "hsl(178, 63%, 93%)",
|
|
132
|
+
"type": "color"
|
|
133
|
+
},
|
|
134
|
+
"$mint02": {
|
|
135
|
+
"value": "hsl(178, 63%, 83%)",
|
|
136
|
+
"type": "color"
|
|
137
|
+
},
|
|
138
|
+
"$mint03": {
|
|
139
|
+
"value": "hsl(177, 64%, 68%)",
|
|
140
|
+
"type": "color"
|
|
141
|
+
},
|
|
142
|
+
"$mint04": {
|
|
143
|
+
"value": "hsl(177, 82%, 44%)",
|
|
144
|
+
"type": "color"
|
|
145
|
+
},
|
|
146
|
+
"$mint05": {
|
|
147
|
+
"value": "hsl(177, 100%, 39%)",
|
|
148
|
+
"type": "color"
|
|
149
|
+
},
|
|
150
|
+
"$mint06": {
|
|
151
|
+
"value": "hsl(178, 100%, 30%)",
|
|
152
|
+
"type": "color"
|
|
153
|
+
},
|
|
154
|
+
"$mint07": {
|
|
155
|
+
"value": "hsl(177, 100%, 20%)",
|
|
156
|
+
"type": "color"
|
|
157
|
+
},
|
|
158
|
+
"$mint08": {
|
|
159
|
+
"value": "hsl(178, 100%, 11%)",
|
|
160
|
+
"type": "color"
|
|
161
|
+
},
|
|
162
|
+
"$teal01": {
|
|
163
|
+
"value": "hsl(190, 56%, 94%)",
|
|
164
|
+
"type": "color"
|
|
165
|
+
},
|
|
166
|
+
"$teal02": {
|
|
167
|
+
"value": "hsl(189, 57%, 85%)",
|
|
168
|
+
"type": "color"
|
|
169
|
+
},
|
|
170
|
+
"$teal03": {
|
|
171
|
+
"value": "hsl(189, 58%, 73%)",
|
|
172
|
+
"type": "color"
|
|
173
|
+
},
|
|
174
|
+
"$teal04": {
|
|
175
|
+
"value": "hsl(189, 57%, 52%)",
|
|
176
|
+
"type": "color"
|
|
177
|
+
},
|
|
178
|
+
"$teal05": {
|
|
179
|
+
"value": "hsl(189, 61%, 48%)",
|
|
180
|
+
"type": "color"
|
|
181
|
+
},
|
|
182
|
+
"$teal06": {
|
|
183
|
+
"value": "hsl(189, 61%, 37%)",
|
|
184
|
+
"type": "color"
|
|
185
|
+
},
|
|
186
|
+
"$teal07": {
|
|
187
|
+
"value": "hsl(189, 61%, 25%)",
|
|
188
|
+
"type": "color"
|
|
189
|
+
},
|
|
190
|
+
"$teal08": {
|
|
191
|
+
"value": "hsl(189, 62%, 13%)",
|
|
192
|
+
"type": "color"
|
|
193
|
+
},
|
|
194
|
+
"$cyan01": {
|
|
195
|
+
"value": "hsl(199, 79%, 95%)",
|
|
196
|
+
"type": "color"
|
|
197
|
+
},
|
|
198
|
+
"$cyan02": {
|
|
199
|
+
"value": "hsl(199, 78%, 87%)",
|
|
200
|
+
"type": "color"
|
|
201
|
+
},
|
|
202
|
+
"$cyan03": {
|
|
203
|
+
"value": "hsl(199, 78%, 76%)",
|
|
204
|
+
"type": "color"
|
|
205
|
+
},
|
|
206
|
+
"$cyan04": {
|
|
207
|
+
"value": "hsl(199, 78%, 58%)",
|
|
208
|
+
"type": "color"
|
|
209
|
+
},
|
|
210
|
+
"$cyan05": {
|
|
211
|
+
"value": "hsl(199, 78%, 55%)",
|
|
212
|
+
"type": "color"
|
|
213
|
+
},
|
|
214
|
+
"$cyan06": {
|
|
215
|
+
"value": "hsl(199, 64%, 42%)",
|
|
216
|
+
"type": "color"
|
|
217
|
+
},
|
|
218
|
+
"$cyan07": {
|
|
219
|
+
"value": "hsl(199, 64%, 29%)",
|
|
220
|
+
"type": "color"
|
|
221
|
+
},
|
|
222
|
+
"$cyan08": {
|
|
223
|
+
"value": "hsl(199, 64%, 15%)",
|
|
224
|
+
"type": "color"
|
|
225
|
+
},
|
|
226
|
+
"$blue01": {
|
|
227
|
+
"value": "hsl(211, 100%, 94%)",
|
|
228
|
+
"type": "color"
|
|
229
|
+
},
|
|
230
|
+
"$blue02": {
|
|
231
|
+
"value": "hsl(211, 100%, 86%)",
|
|
232
|
+
"type": "color"
|
|
233
|
+
},
|
|
234
|
+
"$blue03": {
|
|
235
|
+
"value": "hsl(211, 100%, 74%)",
|
|
236
|
+
"type": "color"
|
|
237
|
+
},
|
|
238
|
+
"$blue04": {
|
|
239
|
+
"value": "hsl(211, 100%, 54%)",
|
|
240
|
+
"type": "color"
|
|
241
|
+
},
|
|
242
|
+
"$blue05": {
|
|
243
|
+
"value": "hsl(211, 100%, 50%)",
|
|
244
|
+
"type": "color"
|
|
245
|
+
},
|
|
246
|
+
"$blue06": {
|
|
247
|
+
"value": "hsl(211, 100%, 38%)",
|
|
248
|
+
"type": "color"
|
|
249
|
+
},
|
|
250
|
+
"$blue07": {
|
|
251
|
+
"value": "hsl(211, 100%, 26%)",
|
|
252
|
+
"type": "color"
|
|
253
|
+
},
|
|
254
|
+
"$blue08": {
|
|
255
|
+
"value": "hsl(211, 100%, 14%)",
|
|
256
|
+
"type": "color"
|
|
257
|
+
},
|
|
258
|
+
"$indigo01": {
|
|
259
|
+
"value": "hsl(244, 62%, 95%)",
|
|
260
|
+
"type": "color"
|
|
261
|
+
},
|
|
262
|
+
"$indigo02": {
|
|
263
|
+
"value": "hsl(242, 62%, 89%)",
|
|
264
|
+
"type": "color"
|
|
265
|
+
},
|
|
266
|
+
"$indigo03": {
|
|
267
|
+
"value": "hsl(241, 61%, 79%)",
|
|
268
|
+
"type": "color"
|
|
269
|
+
},
|
|
270
|
+
"$indigo04": {
|
|
271
|
+
"value": "hsl(241, 61%, 62%)",
|
|
272
|
+
"type": "color"
|
|
273
|
+
},
|
|
274
|
+
"$indigo05": {
|
|
275
|
+
"value": "hsl(241, 61%, 59%)",
|
|
276
|
+
"type": "color"
|
|
277
|
+
},
|
|
278
|
+
"$indigo06": {
|
|
279
|
+
"value": "hsl(241, 43%, 45%)",
|
|
280
|
+
"type": "color"
|
|
281
|
+
},
|
|
282
|
+
"$indigo07": {
|
|
283
|
+
"value": "hsl(241, 43%, 31%)",
|
|
284
|
+
"type": "color"
|
|
285
|
+
},
|
|
286
|
+
"$indigo08": {
|
|
287
|
+
"value": "hsl(242, 43%, 16%)",
|
|
288
|
+
"type": "color"
|
|
289
|
+
},
|
|
290
|
+
"$purple01": {
|
|
291
|
+
"value": "hsl(279, 68%, 95%)",
|
|
292
|
+
"type": "color"
|
|
293
|
+
},
|
|
294
|
+
"$purple02": {
|
|
295
|
+
"value": "hsl(280, 68%, 89%)",
|
|
296
|
+
"type": "color"
|
|
297
|
+
},
|
|
298
|
+
"$purple03": {
|
|
299
|
+
"value": "hsl(279, 68%, 79%)",
|
|
300
|
+
"type": "color"
|
|
301
|
+
},
|
|
302
|
+
"$purple04": {
|
|
303
|
+
"value": "hsl(280, 68%, 63%)",
|
|
304
|
+
"type": "color"
|
|
305
|
+
},
|
|
306
|
+
"$purple05": {
|
|
307
|
+
"value": "hsl(280, 68%, 60%)",
|
|
308
|
+
"type": "color"
|
|
309
|
+
},
|
|
310
|
+
"$purple06": {
|
|
311
|
+
"value": "hsl(280, 46%, 45%)",
|
|
312
|
+
"type": "color"
|
|
313
|
+
},
|
|
314
|
+
"$purple07": {
|
|
315
|
+
"value": "hsl(279, 46%, 31%)",
|
|
316
|
+
"type": "color"
|
|
317
|
+
},
|
|
318
|
+
"$purple08": {
|
|
319
|
+
"value": "hsl(280, 46%, 17%)",
|
|
320
|
+
"type": "color"
|
|
321
|
+
},
|
|
322
|
+
"$pink01": {
|
|
323
|
+
"value": "hsl(348, 100%, 95%)",
|
|
324
|
+
"type": "color"
|
|
325
|
+
},
|
|
326
|
+
"$pink02": {
|
|
327
|
+
"value": "hsl(349, 100%, 89%)",
|
|
328
|
+
"type": "color"
|
|
329
|
+
},
|
|
330
|
+
"$pink03": {
|
|
331
|
+
"value": "hsl(349, 100%, 78%)",
|
|
332
|
+
"type": "color"
|
|
333
|
+
},
|
|
334
|
+
"$pink04": {
|
|
335
|
+
"value": "hsl(349, 100%, 62%)",
|
|
336
|
+
"type": "color"
|
|
337
|
+
},
|
|
338
|
+
"$pink05": {
|
|
339
|
+
"value": "hsl(349, 100%, 59%)",
|
|
340
|
+
"type": "color"
|
|
341
|
+
},
|
|
342
|
+
"$pink06": {
|
|
343
|
+
"value": "hsl(348, 70%, 45%)",
|
|
344
|
+
"type": "color"
|
|
345
|
+
},
|
|
346
|
+
"$pink07": {
|
|
347
|
+
"value": "hsl(349, 71%, 31%)",
|
|
348
|
+
"type": "color"
|
|
349
|
+
},
|
|
350
|
+
"$pink08": {
|
|
351
|
+
"value": "hsl(349, 69%, 16%)",
|
|
352
|
+
"type": "color"
|
|
353
|
+
},
|
|
354
|
+
"$brown01": {
|
|
355
|
+
"value": "hsl(33, 29%, 94%)",
|
|
356
|
+
"type": "color"
|
|
357
|
+
},
|
|
358
|
+
"$brown02": {
|
|
359
|
+
"value": "hsl(35, 27%, 86%)",
|
|
360
|
+
"type": "color"
|
|
361
|
+
},
|
|
362
|
+
"$brown03": {
|
|
363
|
+
"value": "hsl(34, 26%, 74%)",
|
|
364
|
+
"type": "color"
|
|
365
|
+
},
|
|
366
|
+
"$brown04": {
|
|
367
|
+
"value": "hsl(34, 26%, 54%)",
|
|
368
|
+
"type": "color"
|
|
369
|
+
},
|
|
370
|
+
"$brown05": {
|
|
371
|
+
"value": "hsl(34, 27%, 50%)",
|
|
372
|
+
"type": "color"
|
|
373
|
+
},
|
|
374
|
+
"$brown06": {
|
|
375
|
+
"value": "hsl(33, 26%, 38%)",
|
|
376
|
+
"type": "color"
|
|
377
|
+
},
|
|
378
|
+
"$brown07": {
|
|
379
|
+
"value": "hsl(34, 26%, 26%)",
|
|
380
|
+
"type": "color"
|
|
381
|
+
},
|
|
382
|
+
"$brown08": {
|
|
383
|
+
"value": "hsl(35, 27%, 14%)",
|
|
384
|
+
"type": "color"
|
|
385
|
+
},
|
|
386
|
+
"$grey01": {
|
|
387
|
+
"value": "hsl(0, 0%, 96%)",
|
|
388
|
+
"type": "color"
|
|
389
|
+
},
|
|
390
|
+
"$grey02": {
|
|
391
|
+
"value": "hsl(0, 0%, 88%)",
|
|
392
|
+
"type": "color"
|
|
393
|
+
},
|
|
394
|
+
"$grey03": {
|
|
395
|
+
"value": "hsl(0, 0%, 78%)",
|
|
396
|
+
"type": "color"
|
|
397
|
+
},
|
|
398
|
+
"$grey04": {
|
|
399
|
+
"value": "hsl(0, 0%, 66%)",
|
|
400
|
+
"type": "color"
|
|
401
|
+
},
|
|
402
|
+
"$grey05": {
|
|
403
|
+
"value": "hsl(0, 0%, 55%)",
|
|
404
|
+
"type": "color"
|
|
405
|
+
},
|
|
406
|
+
"$grey06": {
|
|
407
|
+
"value": "hsl(0, 0%, 44%)",
|
|
408
|
+
"type": "color"
|
|
409
|
+
},
|
|
410
|
+
"$grey07": {
|
|
411
|
+
"value": "hsl(0, 0%, 32%)",
|
|
412
|
+
"type": "color"
|
|
413
|
+
},
|
|
414
|
+
"$grey08": {
|
|
415
|
+
"value": "hsl(0, 0%, 22%)",
|
|
416
|
+
"type": "color"
|
|
417
|
+
},
|
|
418
|
+
"$grey09": {
|
|
419
|
+
"value": "hsl(0, 0%, 15%)",
|
|
420
|
+
"type": "color"
|
|
421
|
+
},
|
|
422
|
+
"$grey10": {
|
|
423
|
+
"value": "hsl(0, 0%, 9%)",
|
|
424
|
+
"type": "color"
|
|
425
|
+
},
|
|
426
|
+
"$warm01": {
|
|
427
|
+
"value": "hsl(12, 24%, 96%)",
|
|
428
|
+
"type": "color"
|
|
429
|
+
},
|
|
430
|
+
"$warm02": {
|
|
431
|
+
"value": "hsl(10, 10%, 89%)",
|
|
432
|
+
"type": "color"
|
|
433
|
+
},
|
|
434
|
+
"$warm03": {
|
|
435
|
+
"value": "hsl(10, 5%, 78%)",
|
|
436
|
+
"type": "color"
|
|
437
|
+
},
|
|
438
|
+
"$warm04": {
|
|
439
|
+
"value": "hsl(0, 3%, 67%)",
|
|
440
|
+
"type": "color"
|
|
441
|
+
},
|
|
442
|
+
"$warm05": {
|
|
443
|
+
"value": "hsl(0, 2%, 55%)",
|
|
444
|
+
"type": "color"
|
|
445
|
+
},
|
|
446
|
+
"$warm06": {
|
|
447
|
+
"value": "hsl(0, 2%, 44%)",
|
|
448
|
+
"type": "color"
|
|
449
|
+
},
|
|
450
|
+
"$warm07": {
|
|
451
|
+
"value": "hsl(0, 3%, 33%)",
|
|
452
|
+
"type": "color"
|
|
453
|
+
},
|
|
454
|
+
"$warm08": {
|
|
455
|
+
"value": "hsl(0, 3%, 23%)",
|
|
456
|
+
"type": "color"
|
|
457
|
+
},
|
|
458
|
+
"$warm09": {
|
|
459
|
+
"value": "hsl(0, 3%, 15%)",
|
|
460
|
+
"type": "color"
|
|
461
|
+
},
|
|
462
|
+
"$warm10": {
|
|
463
|
+
"value": "hsl(0, 7%, 8%)",
|
|
464
|
+
"type": "color"
|
|
465
|
+
},
|
|
466
|
+
"$cold01": {
|
|
467
|
+
"value": "hsl(220, 30%, 96%)",
|
|
468
|
+
"type": "color"
|
|
469
|
+
},
|
|
470
|
+
"$cold02": {
|
|
471
|
+
"value": "hsl(213, 15%, 88%)",
|
|
472
|
+
"type": "color"
|
|
473
|
+
},
|
|
474
|
+
"$cold03": {
|
|
475
|
+
"value": "hsl(210, 11%, 78%)",
|
|
476
|
+
"type": "color"
|
|
477
|
+
},
|
|
478
|
+
"$cold04": {
|
|
479
|
+
"value": "hsl(210, 8%, 66%)",
|
|
480
|
+
"type": "color"
|
|
481
|
+
},
|
|
482
|
+
"$cold05": {
|
|
483
|
+
"value": "hsl(216, 7%, 56%)",
|
|
484
|
+
"type": "color"
|
|
485
|
+
},
|
|
486
|
+
"$cold06": {
|
|
487
|
+
"value": "hsl(210, 6%, 44%)",
|
|
488
|
+
"type": "color"
|
|
489
|
+
},
|
|
490
|
+
"$cold07": {
|
|
491
|
+
"value": "hsl(207, 7%, 32%)",
|
|
492
|
+
"type": "color"
|
|
493
|
+
},
|
|
494
|
+
"$cold08": {
|
|
495
|
+
"value": "hsl(207, 10%, 23%)",
|
|
496
|
+
"type": "color"
|
|
497
|
+
},
|
|
498
|
+
"$cold09": {
|
|
499
|
+
"value": "hsl(200, 12%, 15%)",
|
|
500
|
+
"type": "color"
|
|
501
|
+
},
|
|
502
|
+
"$cold10": {
|
|
503
|
+
"value": "hsl(206, 16%, 8%)",
|
|
504
|
+
"type": "color"
|
|
505
|
+
},
|
|
506
|
+
"$black": {
|
|
507
|
+
"value": "hsl(0, 0%, 0%)",
|
|
508
|
+
"type": "color"
|
|
509
|
+
},
|
|
510
|
+
"$white": {
|
|
511
|
+
"value": "hsl(0, 0%, 100%)",
|
|
512
|
+
"type": "color"
|
|
513
|
+
}
|
|
514
|
+
}
|
|
515
|
+
|