@kusitms/tokens 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/package.json ADDED
@@ -0,0 +1,25 @@
1
+ {
2
+ "name": "@kusitms/tokens",
3
+ "version": "0.1.0",
4
+ "private": false,
5
+ "type": "module",
6
+ "exports": {
7
+ "./tokens": "./src/tokens.json",
8
+ "./index.css": "./src/index.css",
9
+ "./themes.css": "./src/themes.css",
10
+ "./typography.css": "./src/typography.css"
11
+ },
12
+ "files": [
13
+ "src"
14
+ ],
15
+ "publishConfig": {
16
+ "access": "public"
17
+ },
18
+ "scripts": {
19
+ "build": "node scripts/convert-tokens.mjs",
20
+ "convert": "node scripts/convert-tokens.mjs",
21
+ "check": "pnpm lint && pnpm typecheck",
22
+ "lint": "biome check src",
23
+ "typecheck": "node -e \"console.log('tokens: no typecheck step')\""
24
+ }
25
+ }
package/src/index.css ADDED
@@ -0,0 +1,132 @@
1
+ :root {
2
+ --cool-netural-1: #f7f7f8;
3
+ --cool-netural-5: #edeeef;
4
+ --cool-netural-10: #dcdddf;
5
+ --cool-netural-20: #babbc1;
6
+ --cool-netural-30: #9798a1;
7
+ --cool-netural-40: #777982;
8
+ --cool-netural-50: #5b5c63;
9
+ --cool-netural-60: #484950;
10
+ --cool-netural-70: #35373b;
11
+ --cool-netural-80: #27282b;
12
+ --cool-netural-90: #17171a;
13
+ --cool-netural-95: #0e0e10;
14
+ --netural-5: #f1f1f1;
15
+ --netural-10: #e5e5e5;
16
+ --netural-20: #c9c9c9;
17
+ --netural-30: #b0b0b0;
18
+ --netural-40: #989898;
19
+ --netural-50: #7f7f7f;
20
+ --netural-60: #666666;
21
+ --netural-70: #4b4b4b;
22
+ --netural-80: #323232;
23
+ --netural-90: #1d1d1d;
24
+ --netural-95: #111111;
25
+ --blue-5: #eff4ff;
26
+ --blue-10: #dce5fe;
27
+ --blue-20: #baccfe;
28
+ --blue-30: #98b1fe;
29
+ --blue-40: #7c99fd;
30
+ --blue-50: #5c7dfb;
31
+ --blue-60: #3e5efa;
32
+ --blue-70: #223dc9;
33
+ --blue-80: #051c94;
34
+ --blue-90: #0b1a65;
35
+ --blue-95: #0a154d;
36
+ --orange-5: #fffcf7;
37
+ --orange-10: #fef4e6;
38
+ --orange-20: #fee6c6;
39
+ --orange-30: #ffd49c;
40
+ --orange-40: #ffc06e;
41
+ --orange-50: #ffa938;
42
+ --orange-60: #ff9200;
43
+ --orange-70: #d47800;
44
+ --orange-80: #9c5800;
45
+ --orange-90: #663a00;
46
+ --orange-95: #361e00;
47
+ --green-5: #f2fff6;
48
+ --green-10: #d9ffe6;
49
+ --green-20: #acfcc7;
50
+ --green-30: #7df5a5;
51
+ --green-40: #49e57d;
52
+ --green-50: #1ed45a;
53
+ --green-60: #00bf40;
54
+ --green-70: #009632;
55
+ --green-80: #006e25;
56
+ --green-90: #004517;
57
+ --green-95: #00240c;
58
+ --red-5: #fffafa;
59
+ --red-10: #feecec;
60
+ --red-20: #fed5d5;
61
+ --red-30: #ffb5b5;
62
+ --red-40: #ff8c8c;
63
+ --red-50: #ff6363;
64
+ --red-60: #ff4242;
65
+ --red-70: #e52222;
66
+ --red-80: #b00c0c;
67
+ --red-90: #730303;
68
+ --red-95: #3b0101;
69
+ --sky-blue-5: #f0faff;
70
+ --sky-blue-10: #e0f5ff;
71
+ --sky-blue-20: #c2ebff;
72
+ --sky-blue-30: #a3e2ff;
73
+ --sky-blue-40: #79d4ff;
74
+ --sky-blue-50: #3dc1ff;
75
+ --sky-blue-60: #00a6f5;
76
+ --sky-blue-70: #006899;
77
+ --sky-blue-80: #004566;
78
+ --sky-blue-90: #002333;
79
+ --sky-blue-95: #021a25;
80
+ --indigo-5: #f3f2ff;
81
+ --indigo-10: #e3e2fe;
82
+ --indigo-20: #cac6fe;
83
+ --indigo-30: #afaafd;
84
+ --indigo-40: #948bfc;
85
+ --indigo-50: #7366fc;
86
+ --indigo-60: #5640f9;
87
+ --indigo-70: #3d18d8;
88
+ --indigo-80: #24079d;
89
+ --indigo-90: #140364;
90
+ --indigo-95: #0b0147;
91
+ --common-0: #ffffff;
92
+ --common-100: #000000;
93
+ --brand-logo: #18181b;
94
+ --status-positive: #00bf40;
95
+ --status-negative: #ff4242;
96
+ --status-cautionary: #ff9200;
97
+ --brand-primary: #3e5efa;
98
+ --brand-secondary: #7c99fd;
99
+ --brand-assisitve: #e3e2fe;
100
+ --brand-tertiary: #baccfe;
101
+ --brand-strong: #223dc9;
102
+ --label-normal: #17171a;
103
+ --label-strong: #000000;
104
+ --label-light: #5b5c63;
105
+ --label-alternative: #777982;
106
+ --label-disable: #babbc1;
107
+ --label-assitive: #9798a1;
108
+ --label-contrast: #ffffff;
109
+ --label-netural: #484950;
110
+ --line-normal: #70737c38;
111
+ --line-neutral: #70737c29;
112
+ --line-alternative: #70737c14;
113
+ --line-strong: #babbc1;
114
+ --fill-normal: #ffffff;
115
+ --fill-strong: #dcdddf;
116
+ --fill-alternative: #edeeef;
117
+ --fill-primary: #eff4ff;
118
+ --fill-secondary: #f3f2ff;
119
+ --fill-positive: #f2fff6;
120
+ --fill-cautionary: #fffcf7;
121
+ --fill-destructive: #fffafa;
122
+ --fill-netural: #f7f7f8;
123
+ --fill-transparent-white: #ffffff4d;
124
+ --fill-transparent-black: #00000026;
125
+ --effect-dimmer: #17171985;
126
+ --static-white: #ffffff;
127
+ --static-black: #000000;
128
+ --interaction-hover: #ffffff40;
129
+ --interaction-pressed: #00000014;
130
+ --interaction-hover-inverse: #0000000f;
131
+ --interaction-dim: #17171abf;
132
+ }