@economic/taco-tokens 2.2.2 → 2.2.3-alpha-test-colors.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/package.json +3 -3
- package/tokens/tokens.css +7 -0
- package/tokens/tokens.ts +7 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@economic/taco-tokens",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.3-alpha-test-colors.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -29,8 +29,8 @@
|
|
|
29
29
|
"dotenv": "^16.6.1"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
|
-
"@types/node": "^22.19.
|
|
32
|
+
"@types/node": "^22.19.18",
|
|
33
33
|
"typescript": "^5.9.3"
|
|
34
34
|
},
|
|
35
|
-
"gitHead": "
|
|
35
|
+
"gitHead": "84b0699e1f5f51dac5cff01f4992f60b4b0f92a8"
|
|
36
36
|
}
|
package/tokens/tokens.css
CHANGED
|
@@ -5,12 +5,14 @@
|
|
|
5
5
|
|
|
6
6
|
:root {
|
|
7
7
|
/* Primary Colors */
|
|
8
|
+
--taco-blue-50: #e8effc;
|
|
8
9
|
--taco-blue-100: #d7e2f6;
|
|
9
10
|
--taco-blue-200: #a6beec;
|
|
10
11
|
--taco-blue-300: #7c9ee0;
|
|
11
12
|
--taco-blue-500: #2f5dbd;
|
|
12
13
|
--taco-blue-700: #1e3e81;
|
|
13
14
|
--taco-blue-900: #1a2c51;
|
|
15
|
+
--taco-gray-50: #eeeeee;
|
|
14
16
|
--taco-gray-100: #e1e1e1;
|
|
15
17
|
--taco-gray-200: #bebebe;
|
|
16
18
|
--taco-gray-300: #9e9e9e;
|
|
@@ -19,18 +21,21 @@
|
|
|
19
21
|
--taco-gray-900: #2e2e2e;
|
|
20
22
|
|
|
21
23
|
/* Secondary Colors */
|
|
24
|
+
--taco-red-50: #fceae7;
|
|
22
25
|
--taco-red-100: #fed7d1;
|
|
23
26
|
--taco-red-200: #f2a89e;
|
|
24
27
|
--taco-red-300: #e8796c;
|
|
25
28
|
--taco-red-500: #a23e35;
|
|
26
29
|
--taco-red-700: #682e28;
|
|
27
30
|
--taco-red-900: #3c2825;
|
|
31
|
+
--taco-yellow-50: #fdefba;
|
|
28
32
|
--taco-yellow-100: #f6e191;
|
|
29
33
|
--taco-yellow-200: #ddbc28;
|
|
30
34
|
--taco-yellow-300: #ba9c14;
|
|
31
35
|
--taco-yellow-500: #756208;
|
|
32
36
|
--taco-yellow-700: #4f4100;
|
|
33
37
|
--taco-yellow-900: #362d07;
|
|
38
|
+
--taco-green-50: #d9f7eb;
|
|
34
39
|
--taco-green-100: #c5ecdd;
|
|
35
40
|
--taco-green-200: #90cdb7;
|
|
36
41
|
--taco-green-300: #79ab99;
|
|
@@ -39,12 +44,14 @@
|
|
|
39
44
|
--taco-green-900: #17342a;
|
|
40
45
|
|
|
41
46
|
/* Tertiary Colors */
|
|
47
|
+
--taco-pink-50: #fbe9ee;
|
|
42
48
|
--taco-pink-100: #fdd5e0;
|
|
43
49
|
--taco-pink-200: #e3acbc;
|
|
44
50
|
--taco-pink-300: #d2849c;
|
|
45
51
|
--taco-pink-500: #9c3e60;
|
|
46
52
|
--taco-pink-700: #642e41;
|
|
47
53
|
--taco-pink-900: #42232d;
|
|
54
|
+
--taco-purple-50: #efecff;
|
|
48
55
|
--taco-purple-100: #e2dcff;
|
|
49
56
|
--taco-purple-200: #c0b6e7;
|
|
50
57
|
--taco-purple-300: #a193d4;
|
package/tokens/tokens.ts
CHANGED
|
@@ -5,12 +5,14 @@
|
|
|
5
5
|
|
|
6
6
|
/* Primary Colors */
|
|
7
7
|
export const primaryColors = {
|
|
8
|
+
tacoBlue50: '#e8effc',
|
|
8
9
|
tacoBlue100: '#d7e2f6',
|
|
9
10
|
tacoBlue200: '#a6beec',
|
|
10
11
|
tacoBlue300: '#7c9ee0',
|
|
11
12
|
tacoBlue500: '#2f5dbd',
|
|
12
13
|
tacoBlue700: '#1e3e81',
|
|
13
14
|
tacoBlue900: '#1a2c51',
|
|
15
|
+
tacoGray50: '#eeeeee',
|
|
14
16
|
tacoGray100: '#e1e1e1',
|
|
15
17
|
tacoGray200: '#bebebe',
|
|
16
18
|
tacoGray300: '#9e9e9e',
|
|
@@ -21,18 +23,21 @@ export const primaryColors = {
|
|
|
21
23
|
|
|
22
24
|
/* Secondary Colors */
|
|
23
25
|
export const secondaryColors = {
|
|
26
|
+
tacoRed50: '#fceae7',
|
|
24
27
|
tacoRed100: '#fed7d1',
|
|
25
28
|
tacoRed200: '#f2a89e',
|
|
26
29
|
tacoRed300: '#e8796c',
|
|
27
30
|
tacoRed500: '#a23e35',
|
|
28
31
|
tacoRed700: '#682e28',
|
|
29
32
|
tacoRed900: '#3c2825',
|
|
33
|
+
tacoYellow50: '#fdefba',
|
|
30
34
|
tacoYellow100: '#f6e191',
|
|
31
35
|
tacoYellow200: '#ddbc28',
|
|
32
36
|
tacoYellow300: '#ba9c14',
|
|
33
37
|
tacoYellow500: '#756208',
|
|
34
38
|
tacoYellow700: '#4f4100',
|
|
35
39
|
tacoYellow900: '#362d07',
|
|
40
|
+
tacoGreen50: '#d9f7eb',
|
|
36
41
|
tacoGreen100: '#c5ecdd',
|
|
37
42
|
tacoGreen200: '#90cdb7',
|
|
38
43
|
tacoGreen300: '#79ab99',
|
|
@@ -43,12 +48,14 @@ export const secondaryColors = {
|
|
|
43
48
|
|
|
44
49
|
/* Tertiary Colors */
|
|
45
50
|
export const tertiaryColors = {
|
|
51
|
+
tacoPink50: '#fbe9ee',
|
|
46
52
|
tacoPink100: '#fdd5e0',
|
|
47
53
|
tacoPink200: '#e3acbc',
|
|
48
54
|
tacoPink300: '#d2849c',
|
|
49
55
|
tacoPink500: '#9c3e60',
|
|
50
56
|
tacoPink700: '#642e41',
|
|
51
57
|
tacoPink900: '#42232d',
|
|
58
|
+
tacoPurple50: '#efecff',
|
|
52
59
|
tacoPurple100: '#e2dcff',
|
|
53
60
|
tacoPurple200: '#c0b6e7',
|
|
54
61
|
tacoPurple300: '#a193d4',
|