@namp88/compass-tokens 1.0.3
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 -0
- package/dist/css/primitives.css +348 -0
- package/dist/css/themes/dark.css +506 -0
- package/dist/css/themes/highcontrast.css +506 -0
- package/dist/css/themes/light.css +506 -0
- package/dist/css/tokens.css +2372 -0
- package/dist/scss/_badge-lg.scss +13 -0
- package/dist/scss/_badge-md.scss +13 -0
- package/dist/scss/_badge-sm.scss +13 -0
- package/dist/scss/_badge-xs.scss +13 -0
- package/dist/scss/_button-lg.scss +35 -0
- package/dist/scss/_button-md.scss +35 -0
- package/dist/scss/_button-sm.scss +35 -0
- package/dist/scss/_button-xs.scss +35 -0
- package/dist/scss/_card.scss +5 -0
- package/dist/scss/_colors.scss +190 -0
- package/dist/scss/_dropdown-lg.scss +12 -0
- package/dist/scss/_dropdown-md.scss +12 -0
- package/dist/scss/_dropdown-sm.scss +12 -0
- package/dist/scss/_icon-size-lg.scss +8 -0
- package/dist/scss/_icon-size-md.scss +8 -0
- package/dist/scss/_icon-size-sm.scss +8 -0
- package/dist/scss/_icon-size-xs.scss +8 -0
- package/dist/scss/_index.scss +30 -0
- package/dist/scss/_input-lg.scss +37 -0
- package/dist/scss/_input-md.scss +37 -0
- package/dist/scss/_input-sm.scss +37 -0
- package/dist/scss/_primitives.scss +206 -0
- package/dist/scss/_semantic-dark.scss +644 -0
- package/dist/scss/_semantic-high-contrast.scss +644 -0
- package/dist/scss/_semantic-light.scss +644 -0
- package/dist/scss/_typography.scss +115 -0
- package/dist/scss/tokens.scss +2853 -0
- package/package.json +55 -0
- package/tokens/design-tokens.json +24991 -0
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
// =============================================================================
|
|
2
|
+
// Badge - LG
|
|
3
|
+
// Generated from Figma design tokens
|
|
4
|
+
// Generated at: 2026-02-04T14:40:26.441Z
|
|
5
|
+
// =============================================================================
|
|
6
|
+
|
|
7
|
+
$height: $size-6xl;
|
|
8
|
+
$padding-x: $space-sm;
|
|
9
|
+
$font-weight: $font-weight-semibold;
|
|
10
|
+
$font-line-height: $text-line-height-md;
|
|
11
|
+
$font-size: $text-font-size-md;
|
|
12
|
+
$font-family: $text-font-family-md;
|
|
13
|
+
$icon-gap: $space-xs;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
// =============================================================================
|
|
2
|
+
// Badge - MD
|
|
3
|
+
// Generated from Figma design tokens
|
|
4
|
+
// Generated at: 2026-02-04T14:40:26.441Z
|
|
5
|
+
// =============================================================================
|
|
6
|
+
|
|
7
|
+
$height: $size-5xl;
|
|
8
|
+
$padding-x: $space-xs;
|
|
9
|
+
$font-weight: $font-weight-semibold;
|
|
10
|
+
$font-line-height: $text-line-height-sm;
|
|
11
|
+
$font-size: $text-font-size-sm;
|
|
12
|
+
$font-family: $text-font-family-sm;
|
|
13
|
+
$icon-gap: $space-2xs;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
// =============================================================================
|
|
2
|
+
// Badge - SM
|
|
3
|
+
// Generated from Figma design tokens
|
|
4
|
+
// Generated at: 2026-02-04T14:40:26.441Z
|
|
5
|
+
// =============================================================================
|
|
6
|
+
|
|
7
|
+
$height: $size-3xl;
|
|
8
|
+
$padding-x: $space-xs;
|
|
9
|
+
$font-weight: $font-weight-semibold;
|
|
10
|
+
$font-line-height: $text-line-height-sm;
|
|
11
|
+
$font-size: $text-font-size-sm;
|
|
12
|
+
$font-family: $text-font-family-sm;
|
|
13
|
+
$icon-gap: $space-3xs;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
// =============================================================================
|
|
2
|
+
// Badge - XS
|
|
3
|
+
// Generated from Figma design tokens
|
|
4
|
+
// Generated at: 2026-02-04T14:40:26.441Z
|
|
5
|
+
// =============================================================================
|
|
6
|
+
|
|
7
|
+
$height: $size-2xl;
|
|
8
|
+
$padding-x: $space-2xs;
|
|
9
|
+
$font-weight: $font-weight-semibold;
|
|
10
|
+
$font-line-height: $text-line-height-xs;
|
|
11
|
+
$font-size: $text-font-size-xs;
|
|
12
|
+
$font-family: $text-font-family-sm;
|
|
13
|
+
$icon-gap: $space-4xs;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
// =============================================================================
|
|
2
|
+
// Button - LG
|
|
3
|
+
// Generated from Figma design tokens
|
|
4
|
+
// Generated at: 2026-02-04T14:40:26.435Z
|
|
5
|
+
// =============================================================================
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
// -----------------------------------------------------------------------------
|
|
9
|
+
// button
|
|
10
|
+
// -----------------------------------------------------------------------------
|
|
11
|
+
|
|
12
|
+
$height: $size-7xl;
|
|
13
|
+
$padding-x: $space-md;
|
|
14
|
+
$padding-y: $space-sm;
|
|
15
|
+
$icon-gap: $space-xs;
|
|
16
|
+
$border-radius: $border-radius-lg;
|
|
17
|
+
$font-size: $text-font-size-md;
|
|
18
|
+
$font-weight: $font-weight-semibold;
|
|
19
|
+
$font-family: $text-font-family-md;
|
|
20
|
+
$font-line-height: $text-line-height-md;
|
|
21
|
+
$icon-height: $size-2xl;
|
|
22
|
+
$icon-width: $size-2xl;
|
|
23
|
+
|
|
24
|
+
// -----------------------------------------------------------------------------
|
|
25
|
+
// only-icon
|
|
26
|
+
// -----------------------------------------------------------------------------
|
|
27
|
+
|
|
28
|
+
$height: $size-7xl;
|
|
29
|
+
$padding-x: $space-sm;
|
|
30
|
+
$padding-y: $space-sm;
|
|
31
|
+
$icon-gap: $space-xs;
|
|
32
|
+
$border-radius: $border-radius-lg;
|
|
33
|
+
$font-family: $font-family-text;
|
|
34
|
+
$font-size: $font-size-md;
|
|
35
|
+
$font-weight: $font-weight-semibold;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
// =============================================================================
|
|
2
|
+
// Button - MD
|
|
3
|
+
// Generated from Figma design tokens
|
|
4
|
+
// Generated at: 2026-02-04T14:40:26.436Z
|
|
5
|
+
// =============================================================================
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
// -----------------------------------------------------------------------------
|
|
9
|
+
// button
|
|
10
|
+
// -----------------------------------------------------------------------------
|
|
11
|
+
|
|
12
|
+
$height: $size-5xl;
|
|
13
|
+
$padding-x: $space-sm;
|
|
14
|
+
$padding-y: $space-2xs;
|
|
15
|
+
$icon-gap: $space-2xs;
|
|
16
|
+
$border-radius: $border-radius-lg;
|
|
17
|
+
$font-size: $text-font-size-sm;
|
|
18
|
+
$font-weight: $font-weight-semibold;
|
|
19
|
+
$font-family: $text-font-family-sm;
|
|
20
|
+
$font-line-height: $text-line-height-sm;
|
|
21
|
+
$icon-height: $size-2xl;
|
|
22
|
+
$icon-width: $size-2xl;
|
|
23
|
+
|
|
24
|
+
// -----------------------------------------------------------------------------
|
|
25
|
+
// only-icon
|
|
26
|
+
// -----------------------------------------------------------------------------
|
|
27
|
+
|
|
28
|
+
$height: $size-5xl;
|
|
29
|
+
$padding-x: $space-2xs;
|
|
30
|
+
$padding-y: $space-2xs;
|
|
31
|
+
$icon-gap: $space-2xs;
|
|
32
|
+
$border-radius: $border-radius-lg;
|
|
33
|
+
$font-family: $font-family-text;
|
|
34
|
+
$font-size: $font-size-sm;
|
|
35
|
+
$font-weight: $font-weight-semibold;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
// =============================================================================
|
|
2
|
+
// Button - SM
|
|
3
|
+
// Generated from Figma design tokens
|
|
4
|
+
// Generated at: 2026-02-04T14:40:26.436Z
|
|
5
|
+
// =============================================================================
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
// -----------------------------------------------------------------------------
|
|
9
|
+
// button
|
|
10
|
+
// -----------------------------------------------------------------------------
|
|
11
|
+
|
|
12
|
+
$height: $size-3xl;
|
|
13
|
+
$padding-x: $space-xs;
|
|
14
|
+
$padding-y: $space-3xs;
|
|
15
|
+
$icon-gap: $space-3xs;
|
|
16
|
+
$border-radius: $border-radius-md;
|
|
17
|
+
$font-size: $text-font-size-sm;
|
|
18
|
+
$font-weight: $font-weight-semibold;
|
|
19
|
+
$font-family: $text-font-family-sm;
|
|
20
|
+
$font-line-height: $text-line-height-sm;
|
|
21
|
+
$icon-height: $size-xl;
|
|
22
|
+
$icon-width: $size-xl;
|
|
23
|
+
|
|
24
|
+
// -----------------------------------------------------------------------------
|
|
25
|
+
// only-icon
|
|
26
|
+
// -----------------------------------------------------------------------------
|
|
27
|
+
|
|
28
|
+
$height: $size-3xl;
|
|
29
|
+
$padding-x: $space-3xs;
|
|
30
|
+
$padding-y: $space-3xs;
|
|
31
|
+
$icon-gap: $space-3xs;
|
|
32
|
+
$border-radius: $border-radius-md;
|
|
33
|
+
$font-family: $font-family-text;
|
|
34
|
+
$font-size: $size-sm;
|
|
35
|
+
$font-weight: $font-weight-semibold;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
// =============================================================================
|
|
2
|
+
// Button - XS
|
|
3
|
+
// Generated from Figma design tokens
|
|
4
|
+
// Generated at: 2026-02-04T14:40:26.437Z
|
|
5
|
+
// =============================================================================
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
// -----------------------------------------------------------------------------
|
|
9
|
+
// button
|
|
10
|
+
// -----------------------------------------------------------------------------
|
|
11
|
+
|
|
12
|
+
$height: $size-2xl;
|
|
13
|
+
$padding-x: $space-2xs;
|
|
14
|
+
$padding-y: $space-5xs;
|
|
15
|
+
$icon-gap: $space-4xs;
|
|
16
|
+
$border-radius: $border-radius-sm;
|
|
17
|
+
$font-size: $text-font-size-sm;
|
|
18
|
+
$font-weight: $font-weight-semibold;
|
|
19
|
+
$font-family: $text-font-family-sm;
|
|
20
|
+
$font-line-height: $text-line-height-sm;
|
|
21
|
+
$icon-height: $size-md;
|
|
22
|
+
$icon-width: $size-md;
|
|
23
|
+
|
|
24
|
+
// -----------------------------------------------------------------------------
|
|
25
|
+
// only-icon
|
|
26
|
+
// -----------------------------------------------------------------------------
|
|
27
|
+
|
|
28
|
+
$height: $size-2xl;
|
|
29
|
+
$padding-x: $space-4xs;
|
|
30
|
+
$padding-y: $space-4xs;
|
|
31
|
+
$icon-gap: $space-4xs;
|
|
32
|
+
$border-radius: $border-radius-sm;
|
|
33
|
+
$font-family: $font-family-text;
|
|
34
|
+
$font-size: $size-sm;
|
|
35
|
+
$font-weight: $font-weight-semibold;
|
|
@@ -0,0 +1,190 @@
|
|
|
1
|
+
// =============================================================================
|
|
2
|
+
// Colors - Mode 1
|
|
3
|
+
// Generated from Figma design tokens
|
|
4
|
+
// Generated at: 2026-02-04T14:40:26.434Z
|
|
5
|
+
// =============================================================================
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
// -----------------------------------------------------------------------------
|
|
9
|
+
// A11y
|
|
10
|
+
// -----------------------------------------------------------------------------
|
|
11
|
+
|
|
12
|
+
$pink: #ff5cc3;
|
|
13
|
+
$purple: #b880ff;
|
|
14
|
+
$brand: #6beaff;
|
|
15
|
+
$green: #42e051;
|
|
16
|
+
$a11y-red: #ff6363;
|
|
17
|
+
$yellow: #fbfb0f;
|
|
18
|
+
$teal: #6bffc3;
|
|
19
|
+
$orange: #ffd26b;
|
|
20
|
+
|
|
21
|
+
// -----------------------------------------------------------------------------
|
|
22
|
+
// Red
|
|
23
|
+
// -----------------------------------------------------------------------------
|
|
24
|
+
|
|
25
|
+
$red-50: #fff6f5;
|
|
26
|
+
$red-100: #ffe9e6;
|
|
27
|
+
$red-200: #ffd6d1;
|
|
28
|
+
$red-300: #ffb5a9;
|
|
29
|
+
$red-400: #ff9688;
|
|
30
|
+
$red-450: #f14a3d;
|
|
31
|
+
$red-500: #cf292c;
|
|
32
|
+
$red-600: #a51818;
|
|
33
|
+
$red-700: #860919;
|
|
34
|
+
$red-800: #6a010f;
|
|
35
|
+
$red-900: #52010a;
|
|
36
|
+
|
|
37
|
+
// -----------------------------------------------------------------------------
|
|
38
|
+
// Yellow
|
|
39
|
+
// -----------------------------------------------------------------------------
|
|
40
|
+
|
|
41
|
+
$yellow-50: #fff9e5;
|
|
42
|
+
$yellow-100: #fdecbe;
|
|
43
|
+
$yellow-200: #fadf91;
|
|
44
|
+
$yellow-300: #f4c141;
|
|
45
|
+
$yellow-400: #efab00;
|
|
46
|
+
$yellow-450: #c07800;
|
|
47
|
+
$yellow-500: #975f00;
|
|
48
|
+
$yellow-600: #804600;
|
|
49
|
+
$yellow-700: #643500;
|
|
50
|
+
$yellow-800: #4a270e;
|
|
51
|
+
$yellow-900: #391d08;
|
|
52
|
+
|
|
53
|
+
// -----------------------------------------------------------------------------
|
|
54
|
+
// Base
|
|
55
|
+
// -----------------------------------------------------------------------------
|
|
56
|
+
|
|
57
|
+
$white: #ffffff;
|
|
58
|
+
$black: #000000;
|
|
59
|
+
$transparent: #ffffff00;
|
|
60
|
+
|
|
61
|
+
// -----------------------------------------------------------------------------
|
|
62
|
+
// Neutral
|
|
63
|
+
// -----------------------------------------------------------------------------
|
|
64
|
+
|
|
65
|
+
$neutral-50: #f6f7fa;
|
|
66
|
+
$neutral-100: #f0f4f6;
|
|
67
|
+
$neutral-200: #e0e5eb;
|
|
68
|
+
$neutral-250: #d3d7de;
|
|
69
|
+
$neutral-300: #c1c6d1;
|
|
70
|
+
$neutral-350: #a1a6b3;
|
|
71
|
+
$neutral-400: #8a8f9b;
|
|
72
|
+
$neutral-450: #747b8b;
|
|
73
|
+
$neutral-500: #636a78;
|
|
74
|
+
$neutral-550: #575c6a;
|
|
75
|
+
$neutral-600: #434957;
|
|
76
|
+
$neutral-700: #363c48;
|
|
77
|
+
$neutral-800: #292f3b;
|
|
78
|
+
$neutral-900: #1d212b;
|
|
79
|
+
|
|
80
|
+
// -----------------------------------------------------------------------------
|
|
81
|
+
// Pink
|
|
82
|
+
// -----------------------------------------------------------------------------
|
|
83
|
+
|
|
84
|
+
$pink-50: #fff5fa;
|
|
85
|
+
$pink-100: #ffe7f3;
|
|
86
|
+
$pink-200: #ffcee7;
|
|
87
|
+
$pink-300: #ffb7dc;
|
|
88
|
+
$pink-400: #ff90ce;
|
|
89
|
+
$pink-450: #e543a7;
|
|
90
|
+
$pink-500: #c61e8e;
|
|
91
|
+
$pink-600: #9f0b70;
|
|
92
|
+
$pink-700: #7e0758;
|
|
93
|
+
$pink-800: #6c044a;
|
|
94
|
+
$pink-900: #4d0234;
|
|
95
|
+
|
|
96
|
+
// -----------------------------------------------------------------------------
|
|
97
|
+
// Orange
|
|
98
|
+
// -----------------------------------------------------------------------------
|
|
99
|
+
|
|
100
|
+
$orange-50: #fef6ee;
|
|
101
|
+
$orange-100: #ffe9d9;
|
|
102
|
+
$orange-200: #fddbc3;
|
|
103
|
+
$orange-300: #ffba96;
|
|
104
|
+
$orange-400: #ff966e;
|
|
105
|
+
$orange-450: #ed4b24;
|
|
106
|
+
$orange-500: #ca3000;
|
|
107
|
+
$orange-600: #a31f00;
|
|
108
|
+
$orange-700: #811600;
|
|
109
|
+
$orange-800: #640e04;
|
|
110
|
+
$orange-900: #4e0903;
|
|
111
|
+
|
|
112
|
+
// -----------------------------------------------------------------------------
|
|
113
|
+
// Green
|
|
114
|
+
// -----------------------------------------------------------------------------
|
|
115
|
+
|
|
116
|
+
$green-50: #f0fdf0;
|
|
117
|
+
$green-100: #d8fad5;
|
|
118
|
+
$green-200: #b0f2ab;
|
|
119
|
+
$green-300: #8ae182;
|
|
120
|
+
$green-400: #6ecb66;
|
|
121
|
+
$green-450: #31992e;
|
|
122
|
+
$green-500: #217e1f;
|
|
123
|
+
$green-600: #186614;
|
|
124
|
+
$green-700: #0b5006;
|
|
125
|
+
$green-800: #064305;
|
|
126
|
+
$green-900: #112a0f;
|
|
127
|
+
|
|
128
|
+
// -----------------------------------------------------------------------------
|
|
129
|
+
// Turquoise
|
|
130
|
+
// -----------------------------------------------------------------------------
|
|
131
|
+
|
|
132
|
+
$turquoise-50: #f2faff;
|
|
133
|
+
$turquoise-100: #def2ff;
|
|
134
|
+
$turquoise-200: #bbe5ff;
|
|
135
|
+
$turquoise-300: #8cd5ff;
|
|
136
|
+
$turquoise-400: #5dc0f6;
|
|
137
|
+
$turquoise-450: #0096d1;
|
|
138
|
+
$turquoise-500: #0074a2;
|
|
139
|
+
$turquoise-600: #005a7e;
|
|
140
|
+
$turquoise-700: #014663;
|
|
141
|
+
$turquoise-800: #00354c;
|
|
142
|
+
$turquoise-900: #00283b;
|
|
143
|
+
|
|
144
|
+
// -----------------------------------------------------------------------------
|
|
145
|
+
// Teal
|
|
146
|
+
// -----------------------------------------------------------------------------
|
|
147
|
+
|
|
148
|
+
$teal-50: #edfcfc;
|
|
149
|
+
$teal-100: #d1f8f9;
|
|
150
|
+
$teal-200: #a8f1f5;
|
|
151
|
+
$teal-300: #62dee4;
|
|
152
|
+
$teal-400: #32c9d0;
|
|
153
|
+
$teal-450: #008e94;
|
|
154
|
+
$teal-500: #00797e;
|
|
155
|
+
$teal-600: #005d60;
|
|
156
|
+
$teal-700: #00494c;
|
|
157
|
+
$teal-800: #033739;
|
|
158
|
+
$teal-900: #09292b;
|
|
159
|
+
|
|
160
|
+
// -----------------------------------------------------------------------------
|
|
161
|
+
// Purple
|
|
162
|
+
// -----------------------------------------------------------------------------
|
|
163
|
+
|
|
164
|
+
$purple-50: #f9f7ff;
|
|
165
|
+
$purple-100: #f1ebff;
|
|
166
|
+
$purple-200: #e3d6ff;
|
|
167
|
+
$purple-300: #d6c2ff;
|
|
168
|
+
$purple-400: #c6a8ff;
|
|
169
|
+
$purple-450: #a266fa;
|
|
170
|
+
$purple-500: #8a41e2;
|
|
171
|
+
$purple-600: #7324c4;
|
|
172
|
+
$purple-700: #5b13a1;
|
|
173
|
+
$purple-800: #470082;
|
|
174
|
+
$purple-900: #340f5d;
|
|
175
|
+
|
|
176
|
+
// -----------------------------------------------------------------------------
|
|
177
|
+
// Blue
|
|
178
|
+
// -----------------------------------------------------------------------------
|
|
179
|
+
|
|
180
|
+
$blue-50: #f5f9ff;
|
|
181
|
+
$blue-100: #e5efff;
|
|
182
|
+
$blue-200: #c8e1ff;
|
|
183
|
+
$blue-300: #aacfff;
|
|
184
|
+
$blue-400: #8db8ff;
|
|
185
|
+
$blue-450: #3882fa;
|
|
186
|
+
$blue-500: #0e66df;
|
|
187
|
+
$blue-600: #054ac1;
|
|
188
|
+
$blue-700: #02389e;
|
|
189
|
+
$blue-800: #022a7a;
|
|
190
|
+
$blue-900: #011c50;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
// =============================================================================
|
|
2
|
+
// Dropdown - LG
|
|
3
|
+
// Generated from Figma design tokens
|
|
4
|
+
// Generated at: 2026-02-04T14:40:26.438Z
|
|
5
|
+
// =============================================================================
|
|
6
|
+
|
|
7
|
+
$item-height: $size-6xl;
|
|
8
|
+
$item-padding-x: $space-sm;
|
|
9
|
+
$item-gap: $space-xs;
|
|
10
|
+
$item-font-size: $text-font-size-md;
|
|
11
|
+
$item-font-line-height: $text-line-height-md;
|
|
12
|
+
$border-radius: $border-radius-lg;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
// =============================================================================
|
|
2
|
+
// Dropdown - MD
|
|
3
|
+
// Generated from Figma design tokens
|
|
4
|
+
// Generated at: 2026-02-04T14:40:26.439Z
|
|
5
|
+
// =============================================================================
|
|
6
|
+
|
|
7
|
+
$item-height: $size-5xl;
|
|
8
|
+
$item-padding-x: $space-xs;
|
|
9
|
+
$item-gap: $space-2xs;
|
|
10
|
+
$item-font-size: $text-font-size-sm;
|
|
11
|
+
$item-font-line-height: $text-line-height-sm;
|
|
12
|
+
$border-radius: $border-radius-lg;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
// =============================================================================
|
|
2
|
+
// Dropdown - SM
|
|
3
|
+
// Generated from Figma design tokens
|
|
4
|
+
// Generated at: 2026-02-04T14:40:26.440Z
|
|
5
|
+
// =============================================================================
|
|
6
|
+
|
|
7
|
+
$item-height: $size-4xl;
|
|
8
|
+
$item-padding-x: $space-2xs;
|
|
9
|
+
$item-gap: $space-2xs;
|
|
10
|
+
$item-font-size: $text-font-size-sm;
|
|
11
|
+
$item-font-line-height: $text-line-height-sm;
|
|
12
|
+
$border-radius: $border-radius-md;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
// =============================================================================
|
|
2
|
+
// Icon size - LG
|
|
3
|
+
// Generated from Figma design tokens
|
|
4
|
+
// Generated at: 2026-02-04T14:40:26.435Z
|
|
5
|
+
// =============================================================================
|
|
6
|
+
|
|
7
|
+
$icon-width: $size-3xl;
|
|
8
|
+
$icon-height: $size-3xl;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
// =============================================================================
|
|
2
|
+
// Icon size - MD
|
|
3
|
+
// Generated from Figma design tokens
|
|
4
|
+
// Generated at: 2026-02-04T14:40:26.435Z
|
|
5
|
+
// =============================================================================
|
|
6
|
+
|
|
7
|
+
$icon-width: $size-2xl;
|
|
8
|
+
$icon-height: $size-2xl;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
// =============================================================================
|
|
2
|
+
// Icon size - SM
|
|
3
|
+
// Generated from Figma design tokens
|
|
4
|
+
// Generated at: 2026-02-04T14:40:26.435Z
|
|
5
|
+
// =============================================================================
|
|
6
|
+
|
|
7
|
+
$icon-width: $size-xl;
|
|
8
|
+
$icon-height: $size-xl;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
// =============================================================================
|
|
2
|
+
// Icon size - XS
|
|
3
|
+
// Generated from Figma design tokens
|
|
4
|
+
// Generated at: 2026-02-04T14:40:26.435Z
|
|
5
|
+
// =============================================================================
|
|
6
|
+
|
|
7
|
+
$icon-width: $size-md;
|
|
8
|
+
$icon-height: $size-md;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
// =============================================================================
|
|
2
|
+
// Design Tokens - Main Index
|
|
3
|
+
// Generated from Figma
|
|
4
|
+
// =============================================================================
|
|
5
|
+
|
|
6
|
+
@import "primitives";
|
|
7
|
+
@import "typography";
|
|
8
|
+
@import "semantic-light";
|
|
9
|
+
@import "semantic-dark";
|
|
10
|
+
@import "semantic-high-contrast";
|
|
11
|
+
@import "colors";
|
|
12
|
+
@import "icon-size-lg";
|
|
13
|
+
@import "icon-size-md";
|
|
14
|
+
@import "icon-size-sm";
|
|
15
|
+
@import "icon-size-xs";
|
|
16
|
+
@import "button-lg";
|
|
17
|
+
@import "button-md";
|
|
18
|
+
@import "button-sm";
|
|
19
|
+
@import "button-xs";
|
|
20
|
+
@import "card";
|
|
21
|
+
@import "input-lg";
|
|
22
|
+
@import "input-md";
|
|
23
|
+
@import "input-sm";
|
|
24
|
+
@import "dropdown-lg";
|
|
25
|
+
@import "dropdown-md";
|
|
26
|
+
@import "dropdown-sm";
|
|
27
|
+
@import "badge-lg";
|
|
28
|
+
@import "badge-md";
|
|
29
|
+
@import "badge-sm";
|
|
30
|
+
@import "badge-xs";
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
// =============================================================================
|
|
2
|
+
// Input - LG
|
|
3
|
+
// Generated from Figma design tokens
|
|
4
|
+
// Generated at: 2026-02-04T14:40:26.438Z
|
|
5
|
+
// =============================================================================
|
|
6
|
+
|
|
7
|
+
$height: $size-7xl;
|
|
8
|
+
$icon-gap: $space-2xs;
|
|
9
|
+
$padding-y: $space-sm;
|
|
10
|
+
$font-family: $font-family-text;
|
|
11
|
+
$border-radius: $border-radius-lg;
|
|
12
|
+
|
|
13
|
+
// -----------------------------------------------------------------------------
|
|
14
|
+
// placeholder
|
|
15
|
+
// -----------------------------------------------------------------------------
|
|
16
|
+
|
|
17
|
+
$font-weight: $font-weight-regular;
|
|
18
|
+
$font-size: $text-font-size-md;
|
|
19
|
+
$font-line-height: $text-line-height-md;
|
|
20
|
+
$padding-x: $space-xs;
|
|
21
|
+
$border-width: $border-width-md;
|
|
22
|
+
|
|
23
|
+
// -----------------------------------------------------------------------------
|
|
24
|
+
// label
|
|
25
|
+
// -----------------------------------------------------------------------------
|
|
26
|
+
|
|
27
|
+
$font-size: $text-font-size-md;
|
|
28
|
+
$font-weight: $font-weight-semibold;
|
|
29
|
+
$font-line-height: $text-line-height-md;
|
|
30
|
+
|
|
31
|
+
// -----------------------------------------------------------------------------
|
|
32
|
+
// helper
|
|
33
|
+
// -----------------------------------------------------------------------------
|
|
34
|
+
|
|
35
|
+
$font-size: $text-font-size-sm;
|
|
36
|
+
$font-weight: $font-weight-regular;
|
|
37
|
+
$font-line-height: $text-line-height-sm;
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
// =============================================================================
|
|
2
|
+
// Input - MD
|
|
3
|
+
// Generated from Figma design tokens
|
|
4
|
+
// Generated at: 2026-02-04T14:40:26.438Z
|
|
5
|
+
// =============================================================================
|
|
6
|
+
|
|
7
|
+
$height: $size-5xl;
|
|
8
|
+
$icon-gap: $space-2xs;
|
|
9
|
+
$padding-y: $space-2xs;
|
|
10
|
+
$font-family: $font-family-text;
|
|
11
|
+
$border-radius: $border-radius-lg;
|
|
12
|
+
|
|
13
|
+
// -----------------------------------------------------------------------------
|
|
14
|
+
// placeholder
|
|
15
|
+
// -----------------------------------------------------------------------------
|
|
16
|
+
|
|
17
|
+
$font-weight: $font-weight-regular;
|
|
18
|
+
$font-size: $text-font-size-sm;
|
|
19
|
+
$font-line-height: $text-line-height-sm;
|
|
20
|
+
$padding-x: $space-xs;
|
|
21
|
+
$border-width: $border-width-md;
|
|
22
|
+
|
|
23
|
+
// -----------------------------------------------------------------------------
|
|
24
|
+
// label
|
|
25
|
+
// -----------------------------------------------------------------------------
|
|
26
|
+
|
|
27
|
+
$font-size: $text-font-size-sm;
|
|
28
|
+
$font-weight: $font-weight-semibold;
|
|
29
|
+
$font-line-height: $text-line-height-sm;
|
|
30
|
+
|
|
31
|
+
// -----------------------------------------------------------------------------
|
|
32
|
+
// helper
|
|
33
|
+
// -----------------------------------------------------------------------------
|
|
34
|
+
|
|
35
|
+
$font-size: $text-font-size-sm;
|
|
36
|
+
$font-weight: $font-weight-regular;
|
|
37
|
+
$font-line-height: $text-line-height-sm;
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
// =============================================================================
|
|
2
|
+
// Input - SM
|
|
3
|
+
// Generated from Figma design tokens
|
|
4
|
+
// Generated at: 2026-02-04T14:40:26.438Z
|
|
5
|
+
// =============================================================================
|
|
6
|
+
|
|
7
|
+
$height: $size-3xl;
|
|
8
|
+
$icon-gap: $space-2xs;
|
|
9
|
+
$padding-y: $space-3xs;
|
|
10
|
+
$font-family: $font-family-text;
|
|
11
|
+
$border-radius: $border-radius-md;
|
|
12
|
+
|
|
13
|
+
// -----------------------------------------------------------------------------
|
|
14
|
+
// placeholder
|
|
15
|
+
// -----------------------------------------------------------------------------
|
|
16
|
+
|
|
17
|
+
$font-weight: $font-weight-regular;
|
|
18
|
+
$font-size: $text-font-size-sm;
|
|
19
|
+
$font-line-height: $text-line-height-sm;
|
|
20
|
+
$padding-x: $space-2xs;
|
|
21
|
+
$border-width: $border-width-md;
|
|
22
|
+
|
|
23
|
+
// -----------------------------------------------------------------------------
|
|
24
|
+
// label
|
|
25
|
+
// -----------------------------------------------------------------------------
|
|
26
|
+
|
|
27
|
+
$font-size: $text-font-size-sm;
|
|
28
|
+
$font-weight: $font-weight-semibold;
|
|
29
|
+
$font-line-height: $text-line-height-sm;
|
|
30
|
+
|
|
31
|
+
// -----------------------------------------------------------------------------
|
|
32
|
+
// helper
|
|
33
|
+
// -----------------------------------------------------------------------------
|
|
34
|
+
|
|
35
|
+
$font-size: $text-font-size-sm;
|
|
36
|
+
$font-weight: $font-weight-regular;
|
|
37
|
+
$font-line-height: $text-line-height-sm;
|