@liftkit-vue/theme-css 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 +85 -0
- package/css/align-items.css +21 -0
- package/css/align-self.css +24 -0
- package/css/aspect-ratios.css +35 -0
- package/css/background-colors.css +951 -0
- package/css/border-color.css +241 -0
- package/css/border-radius.css +49 -0
- package/css/border-style.css +20 -0
- package/css/border-width.css +41 -0
- package/css/borders.css +33 -0
- package/css/breaks.css +5 -0
- package/css/column-span.css +47 -0
- package/css/cursor.css +3 -0
- package/css/display.css +21 -0
- package/css/flexboxes.css +128 -0
- package/css/gaps.css +42 -0
- package/css/height.css +27 -0
- package/css/index.css +689 -0
- package/css/index.d.ts +6 -0
- package/css/justify-content.css +23 -0
- package/css/justify-items.css +20 -0
- package/css/liftkit-core.css +537 -0
- package/css/liftkitvars.css +378 -0
- package/css/margins.css +947 -0
- package/css/opacity.css +87 -0
- package/css/overflow.css +27 -0
- package/css/padding.css +1041 -0
- package/css/pointer-events.css +3 -0
- package/css/position.css +21 -0
- package/css/scale.css +23 -0
- package/css/scrim.css +10 -0
- package/css/shadows.css +31 -0
- package/css/text-alignment.css +19 -0
- package/css/text-color.css +721 -0
- package/css/text-columns.css +4 -0
- package/css/typography.css +490 -0
- package/css/whitespace.css +3 -0
- package/css/width.css +7 -0
- package/css/z-index.css +25 -0
- package/package.json +28 -0
package/css/index.css
ADDED
|
@@ -0,0 +1,689 @@
|
|
|
1
|
+
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
@layer lk-base {
|
|
6
|
+
@import "./liftkit-core.css";
|
|
7
|
+
@import "./align-items.css";
|
|
8
|
+
@import "./align-self.css";
|
|
9
|
+
@import "./aspect-ratios.css";
|
|
10
|
+
@import "./border-radius.css";
|
|
11
|
+
@import "./column-span.css";
|
|
12
|
+
@import "./display.css";
|
|
13
|
+
@import "./text-color.css";
|
|
14
|
+
@import "./flexboxes.css";
|
|
15
|
+
@import "./gaps.css";
|
|
16
|
+
@import "./justify-content.css";
|
|
17
|
+
@import "./margins.css";
|
|
18
|
+
@import "./opacity.css";
|
|
19
|
+
@import "./overflow.css";
|
|
20
|
+
@import "./padding.css";
|
|
21
|
+
@import "./position.css";
|
|
22
|
+
@import "./scale.css";
|
|
23
|
+
@import "./text-alignment.css";
|
|
24
|
+
@import "./typography.css";
|
|
25
|
+
@import "./width.css";
|
|
26
|
+
@import "./height.css";
|
|
27
|
+
@import "./text-columns.css";
|
|
28
|
+
@import "./borders.css";
|
|
29
|
+
@import "./pointer-events.css";
|
|
30
|
+
@import "./scrim.css";
|
|
31
|
+
@import "./z-index.css";
|
|
32
|
+
@import "./cursor.css";
|
|
33
|
+
@import "./breaks.css";
|
|
34
|
+
@import "./background-colors.css";
|
|
35
|
+
@import "./whitespace.css";
|
|
36
|
+
@import "./border-color.css";
|
|
37
|
+
@import "./border-style.css";
|
|
38
|
+
@import "./border-width.css";
|
|
39
|
+
|
|
40
|
+
ul,
|
|
41
|
+
ol,
|
|
42
|
+
menu {
|
|
43
|
+
list-style: revert;
|
|
44
|
+
padding-left: 1em;
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
/* Force generate class */
|
|
49
|
+
|
|
50
|
+
/* maps variables to direct usable tailwind utility classes automatically */
|
|
51
|
+
@theme {
|
|
52
|
+
/* m-*, p-*, h-*, w-*, border-*, gap-* from 3xs to 4xl
|
|
53
|
+
use m-xs for liftkit's values,
|
|
54
|
+
m-<number> for tailwind */
|
|
55
|
+
--spacing-3xs: var(--lk-size-3xs);
|
|
56
|
+
--spacing-2xs: var(--lk-size-2xs);
|
|
57
|
+
--spacing-xs: var(--lk-size-xs);
|
|
58
|
+
--spacing-sm: var(--lk-size-sm);
|
|
59
|
+
--spacing-md: var(--lk-size-md);
|
|
60
|
+
--spacing-lg: var(--lk-size-lg);
|
|
61
|
+
--spacing-xl: var(--lk-size-xl);
|
|
62
|
+
--spacing-2xl: var(--lk-size-2xl);
|
|
63
|
+
--spacing-3xl: var(--lk-size-3xl);
|
|
64
|
+
--spacing-4xl: var(--lk-size-4xl);
|
|
65
|
+
|
|
66
|
+
--breakpoint-sm: 40rem;
|
|
67
|
+
--breakpoint-md: 48rem;
|
|
68
|
+
--breakpoint-lg: 64rem;
|
|
69
|
+
--breakpoint-xl: 80rem;
|
|
70
|
+
--breakpoint-2xl: 96rem;
|
|
71
|
+
|
|
72
|
+
--breakpoint-tablet: 47.9375rem;
|
|
73
|
+
/* 767px */
|
|
74
|
+
--breakpoint-mobile: 29.9375rem;
|
|
75
|
+
/* 479px */
|
|
76
|
+
|
|
77
|
+
/* https://tailwindcss.com/docs/colors#using-color-utilities */
|
|
78
|
+
/* bg-*, text-*, border-*, shadow-* and anywhere where color will be used */
|
|
79
|
+
|
|
80
|
+
/**** COLORS ****/
|
|
81
|
+
|
|
82
|
+
/* Primary */
|
|
83
|
+
--color-primary: var(--lk-primary);
|
|
84
|
+
--color-onprimary: var(--lk-onprimary);
|
|
85
|
+
--color-primarycontainer: var(--lk-primarycontainer);
|
|
86
|
+
--color-onprimarycontainer: var(--lk-onprimarycontainer);
|
|
87
|
+
--color-primaryfixed: var(--lk-primaryfixed);
|
|
88
|
+
--color-onprimaryfixed: var(--lk-onprimaryfixed);
|
|
89
|
+
--color-primaryfixeddim: var(--lk-primaryfixeddim);
|
|
90
|
+
--color-onprimaryfixedvariant: var(--lk-onprimaryfixedvariant);
|
|
91
|
+
|
|
92
|
+
/* Secondary */
|
|
93
|
+
--color-secondary: var(--lk-secondary);
|
|
94
|
+
--color-onsecondary: var(--lk-onsecondary);
|
|
95
|
+
--color-secondarycontainer: var(--lk-secondarycontainer);
|
|
96
|
+
--color-onsecondarycontainer: var(--lk-onsecondarycontainer);
|
|
97
|
+
--color-secondaryfixed: var(--lk-secondaryfixed);
|
|
98
|
+
--color-onsecondaryfixed: var(--lk-onsecondaryfixed);
|
|
99
|
+
--color-secondaryfixeddim: var(--lk-secondaryfixeddim);
|
|
100
|
+
--color-onsecondaryfixedvariant: var(--lk-onsecondaryfixedvariant);
|
|
101
|
+
|
|
102
|
+
/* Tertiary */
|
|
103
|
+
--color-tertiary: var(--lk-tertiary);
|
|
104
|
+
--color-ontertiary: var(--lk-ontertiary);
|
|
105
|
+
--color-tertiarycontainer: var(--lk-tertiarycontainer);
|
|
106
|
+
--color-ontertiarycontainer: var(--lk-ontertiarycontainer);
|
|
107
|
+
--color-tertiaryfixed: var(--lk-tertiaryfixed);
|
|
108
|
+
--color-ontertiaryfixed: var(--lk-ontertiaryfixed);
|
|
109
|
+
--color-tertiaryfixeddim: var(--lk-tertiaryfixeddim);
|
|
110
|
+
--color-ontertiaryfixedvariant: var(--lk-ontertiaryfixedvariant);
|
|
111
|
+
|
|
112
|
+
/* Background & Surface */
|
|
113
|
+
--color-background: var(--lk-background);
|
|
114
|
+
--color-onbackground: var(--lk-onbackground);
|
|
115
|
+
|
|
116
|
+
--color-surface: var(--lk-surface);
|
|
117
|
+
--color-onsurface: var(--lk-onsurface);
|
|
118
|
+
--color-surfacevariant: var(--lk-surfacevariant);
|
|
119
|
+
--color-onsurfacevariant: var(--lk-onsurfacevariant);
|
|
120
|
+
|
|
121
|
+
/* surface elevation levels */
|
|
122
|
+
--color-surfacecontainerlowest: var(--lk-surfacecontainerlowest);
|
|
123
|
+
--color-surfacecontainerlow: var(--lk-surfacecontainerlow);
|
|
124
|
+
--color-surfacecontainer: var(--lk-surfacecontainer);
|
|
125
|
+
--color-surfacecontainerhigh: var(--lk-surfacecontainerhigh);
|
|
126
|
+
--color-surfacecontainerhighest: var(--lk-surfacecontainerhighest);
|
|
127
|
+
|
|
128
|
+
/* dimmest & brightest surface color
|
|
129
|
+
|
|
130
|
+
For example, in an interface using the default surface role,
|
|
131
|
+
the mapped area is the brightest in light theme and the dimmest in dark theme.
|
|
132
|
+
with surface bright role, the mapped area is the brightest in both light and dark theme.
|
|
133
|
+
|
|
134
|
+
https://m3.material.io/styles/color/roles#b2454878-db47-4621-b058-ecfcff7da730
|
|
135
|
+
*/
|
|
136
|
+
--color-surfacedim: var(--lk-surfacedim);
|
|
137
|
+
--color-surfacebright: var(--lk-surfacebright);
|
|
138
|
+
|
|
139
|
+
|
|
140
|
+
/* Error */
|
|
141
|
+
--color-error: var(--lk-error);
|
|
142
|
+
--color-onerror: var(--lk-onerror);
|
|
143
|
+
--color-errorcontainer: var(--lk-errorcontainer);
|
|
144
|
+
--color-onerrorcontainer: var(--lk-onerrorcontainer);
|
|
145
|
+
|
|
146
|
+
/* Warning */
|
|
147
|
+
--color-warning: var(--lk-warning);
|
|
148
|
+
--color-onwarning: var(--lk-onwarning);
|
|
149
|
+
--color-warningcontainer: var(--lk-warningcontainer);
|
|
150
|
+
--color-onwarningcontainer: var(--lk-onwarningcontainer);
|
|
151
|
+
|
|
152
|
+
/* Success */
|
|
153
|
+
--color-success: var(--lk-success);
|
|
154
|
+
--color-onsuccess: var(--lk-onsuccess);
|
|
155
|
+
--color-successcontainer: var(--lk-successcontainer);
|
|
156
|
+
--color-onsuccesscontainer: var(--lk-onsuccesscontainer);
|
|
157
|
+
|
|
158
|
+
/* Info */
|
|
159
|
+
--color-info: var(--lk-info);
|
|
160
|
+
--color-oninfo: var(--lk-oninfo);
|
|
161
|
+
--color-infocontainer: var(--lk-infocontainer);
|
|
162
|
+
--color-oninfocontainer: var(--lk-oninfocontainer);
|
|
163
|
+
|
|
164
|
+
/* Inverse
|
|
165
|
+
for achieving colors that are inverse of surrounding ui for contrasting effect
|
|
166
|
+
|
|
167
|
+
https://m3.material.io/styles/color/roles#7fc6b47e-db22-4e98-8359-7649a099e4a1
|
|
168
|
+
*/
|
|
169
|
+
|
|
170
|
+
--color-inversesurface: var(--lk-inversesurface);
|
|
171
|
+
--color-inverseonsurface: var(--lk-inverseonsurface);
|
|
172
|
+
--color-inverseprimary: var(--lk-inverseprimary);
|
|
173
|
+
|
|
174
|
+
/* Outline
|
|
175
|
+
for borders outline
|
|
176
|
+
for dividers outline variant
|
|
177
|
+
|
|
178
|
+
https://m3.material.io/styles/color/roles#cdd40805-d18c-4cd7-80b0-077b6b4a6b19
|
|
179
|
+
*/
|
|
180
|
+
--color-outline: var(--lk-outline);
|
|
181
|
+
--color-outlinevariant: var(--lk-outlinevariant);
|
|
182
|
+
|
|
183
|
+
--color-shadow: var(--lk-shadow);
|
|
184
|
+
--color-scrim: var(--lk-scrim);
|
|
185
|
+
|
|
186
|
+
/* Shadow */
|
|
187
|
+
--shadow-sm: var(--lk-shadow-sm);
|
|
188
|
+
--shadow-md: var(--lk-shadow-md);
|
|
189
|
+
--shadow-lg: var(--lk-shadow-lg);
|
|
190
|
+
--shadow-xl: var(--lk-shadow-xl);
|
|
191
|
+
--shadow-2xl: var(--lk-shadow-2xl);
|
|
192
|
+
|
|
193
|
+
/* Border radius */
|
|
194
|
+
--rounded-3xs: var(--lk-size-3xs);
|
|
195
|
+
--rounded-2xs: var(--lk-size-2xs);
|
|
196
|
+
--rounded-xs: var(--lk-size-xs);
|
|
197
|
+
--rounded-sm: var(--lk-size-sm);
|
|
198
|
+
--rounded-md: var(--lk-size-md);
|
|
199
|
+
--rounded-lg: var(--lk-size-lg);
|
|
200
|
+
--rounded-xl: var(--lk-size-xl);
|
|
201
|
+
--rounded-2xl: var(--lk-size-2xl);
|
|
202
|
+
--rounded-3xl: var(--lk-size-3xl);
|
|
203
|
+
--rounded-4xl: var(--lk-size-4xl);
|
|
204
|
+
|
|
205
|
+
/* Scale */
|
|
206
|
+
--scale-up-w: var(--wholestep);
|
|
207
|
+
--scale-up-h: var(--halfstep);
|
|
208
|
+
--scale-up-q: var(--quarterstep);
|
|
209
|
+
--scale-down-w: calc(1 / var(--wholestep));
|
|
210
|
+
--scale-down-h: calc(1 / var(--halfstep));
|
|
211
|
+
--scale-down-q: calc(1 / var(--quarterstep));
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
@utility display1 {
|
|
215
|
+
--lineHeightInEms: calc(1em * var(--lk-quarterstep));
|
|
216
|
+
--spacing-md: var(--lineHeightInEms);
|
|
217
|
+
|
|
218
|
+
--spacing-sm: calc(var(--lineHeightInEms) * var(--lk-wholestep-dec));
|
|
219
|
+
--spacing-xs: calc(var(--lineHeightInEms) * var(--lk-halfstep-dec));
|
|
220
|
+
--spacing-2xs: calc(var(--lineHeightInEms) * var(--lk-quarterstep-dec));
|
|
221
|
+
|
|
222
|
+
--spacing-lg: calc(var(--lineHeightInEms) * var(--lk-wholestep));
|
|
223
|
+
--spacing-xl: calc(var(--spacing-lg) * var(--lk-wholestep));
|
|
224
|
+
--spacing-2xl: calc(var(--spacing-xl) * var(--lk-wholestep));
|
|
225
|
+
|
|
226
|
+
letter-spacing: -0.022em;
|
|
227
|
+
font-size: var(--display1-font-size);
|
|
228
|
+
font-weight: 400;
|
|
229
|
+
line-height: var(--lk-quarterstep);
|
|
230
|
+
|
|
231
|
+
@variant max-tablet {
|
|
232
|
+
font-size: 3.3301em;
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
@variant max-mobile {
|
|
236
|
+
font-size: 2.61743em;
|
|
237
|
+
}
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
@utility display1-bold {
|
|
241
|
+
--lineHeightInEms: calc(1em * var(--lk-quarterstep));
|
|
242
|
+
--spacing-md: var(--lineHeightInEms);
|
|
243
|
+
|
|
244
|
+
--spacing-sm: calc(var(--lineHeightInEms) * var(--lk-wholestep-dec));
|
|
245
|
+
--spacing-xs: calc(var(--lineHeightInEms) * var(--lk-halfstep-dec));
|
|
246
|
+
--spacing-2xs: calc(var(--lineHeightInEms) * var(--lk-quarterstep-dec));
|
|
247
|
+
|
|
248
|
+
--spacing-lg: calc(var(--lineHeightInEms) * var(--lk-wholestep));
|
|
249
|
+
--spacing-xl: calc(var(--spacing-lg) * var(--lk-wholestep));
|
|
250
|
+
--spacing-2xl: calc(var(--spacing-xl) * var(--lk-wholestep));
|
|
251
|
+
|
|
252
|
+
letter-spacing: -0.022em;
|
|
253
|
+
font-size: var(--display1-font-size);
|
|
254
|
+
font-weight: 700;
|
|
255
|
+
line-height: var(--lk-quarterstep);
|
|
256
|
+
|
|
257
|
+
@variant max-tablet {
|
|
258
|
+
font-size: 3.3301em;
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
@variant max-mobile {
|
|
262
|
+
font-size: 2.61743em;
|
|
263
|
+
}
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
@utility display2 {
|
|
267
|
+
--lineHeightInEms: calc(1em * var(--lk-halfstep));
|
|
268
|
+
--spacing-md: var(--lineHeightInEms);
|
|
269
|
+
|
|
270
|
+
--spacing-sm: calc(var(--lineHeightInEms) * var(--lk-wholestep-dec));
|
|
271
|
+
--spacing-xs: calc(var(--lineHeightInEms) * var(--lk-halfstep-dec));
|
|
272
|
+
--spacing-2xs: calc(var(--lineHeightInEms) * var(--lk-quarterstep-dec));
|
|
273
|
+
|
|
274
|
+
--spacing-lg: calc(var(--lineHeightInEms) * var(--lk-wholestep));
|
|
275
|
+
--spacing-xl: calc(var(--spacing-lg) * var(--lk-wholestep));
|
|
276
|
+
--spacing-2xl: calc(var(--spacing-xl) * var(--lk-wholestep));
|
|
277
|
+
|
|
278
|
+
letter-spacing: -0.022em;
|
|
279
|
+
font-size: var(--display2-font-size);
|
|
280
|
+
font-weight: 400;
|
|
281
|
+
line-height: var(--lk-halfstep);
|
|
282
|
+
|
|
283
|
+
@variant max-mobile {
|
|
284
|
+
font-size: 2.05818em;
|
|
285
|
+
}
|
|
286
|
+
}
|
|
287
|
+
|
|
288
|
+
@utility display2-bold {
|
|
289
|
+
--lineHeightInEms: calc(1em * var(--lk-halfstep));
|
|
290
|
+
--spacing-md: var(--lineHeightInEms);
|
|
291
|
+
|
|
292
|
+
--spacing-sm: calc(var(--lineHeightInEms) * var(--lk-wholestep-dec));
|
|
293
|
+
--spacing-xs: calc(var(--lineHeightInEms) * var(--lk-halfstep-dec));
|
|
294
|
+
--spacing-2xs: calc(var(--lineHeightInEms) * var(--lk-quarterstep-dec));
|
|
295
|
+
|
|
296
|
+
--spacing-lg: calc(var(--lineHeightInEms) * var(--lk-wholestep));
|
|
297
|
+
--spacing-xl: calc(var(--spacing-lg) * var(--lk-wholestep));
|
|
298
|
+
--spacing-2xl: calc(var(--spacing-xl) * var(--lk-wholestep));
|
|
299
|
+
|
|
300
|
+
letter-spacing: -0.022em;
|
|
301
|
+
font-size: var(--display2-font-size);
|
|
302
|
+
font-weight: 700;
|
|
303
|
+
line-height: var(--lk-halfstep);
|
|
304
|
+
|
|
305
|
+
@variant max-mobile {
|
|
306
|
+
font-size: 2.05818em;
|
|
307
|
+
}
|
|
308
|
+
}
|
|
309
|
+
|
|
310
|
+
@utility title1 {
|
|
311
|
+
--lineHeightInEms: calc(1em * var(--lk-halfstep));
|
|
312
|
+
--spacing-md: var(--lineHeightInEms);
|
|
313
|
+
|
|
314
|
+
--spacing-sm: calc(var(--lineHeightInEms) * var(--lk-wholestep-dec));
|
|
315
|
+
--spacing-xs: calc(var(--lineHeightInEms) * var(--lk-halfstep-dec));
|
|
316
|
+
--spacing-2xs: calc(var(--lineHeightInEms) * var(--lk-quarterstep-dec));
|
|
317
|
+
|
|
318
|
+
--spacing-lg: calc(var(--lineHeightInEms) * var(--lk-wholestep));
|
|
319
|
+
--spacing-xl: calc(var(--spacing-lg) * var(--lk-wholestep));
|
|
320
|
+
--spacing-2xl: calc(var(--spacing-xl) * var(--lk-wholestep));
|
|
321
|
+
|
|
322
|
+
letter-spacing: -0.022em;
|
|
323
|
+
font-size: var(--title1-font-size);
|
|
324
|
+
font-weight: 400;
|
|
325
|
+
line-height: var(--lk-halfstep);
|
|
326
|
+
|
|
327
|
+
@variant max-mobile {
|
|
328
|
+
font-size: 1.82285em;
|
|
329
|
+
}
|
|
330
|
+
}
|
|
331
|
+
|
|
332
|
+
@utility title1-bold {
|
|
333
|
+
--lineHeightInEms: calc(1em * var(--lk-halfstep));
|
|
334
|
+
--spacing-md: var(--lineHeightInEms);
|
|
335
|
+
|
|
336
|
+
--spacing-sm: calc(var(--lineHeightInEms) * var(--lk-wholestep-dec));
|
|
337
|
+
--spacing-xs: calc(var(--lineHeightInEms) * var(--lk-halfstep-dec));
|
|
338
|
+
--spacing-2xs: calc(var(--lineHeightInEms) * var(--lk-quarterstep-dec));
|
|
339
|
+
|
|
340
|
+
--spacing-lg: calc(var(--lineHeightInEms) * var(--lk-wholestep));
|
|
341
|
+
--spacing-xl: calc(var(--spacing-lg) * var(--lk-wholestep));
|
|
342
|
+
--spacing-2xl: calc(var(--spacing-xl) * var(--lk-wholestep));
|
|
343
|
+
|
|
344
|
+
letter-spacing: -0.022em;
|
|
345
|
+
font-size: var(--title1-font-size);
|
|
346
|
+
font-weight: 600;
|
|
347
|
+
line-height: var(--lk-halfstep);
|
|
348
|
+
|
|
349
|
+
@variant max-mobile {
|
|
350
|
+
font-size: 1.82285em;
|
|
351
|
+
}
|
|
352
|
+
}
|
|
353
|
+
|
|
354
|
+
@utility title2 {
|
|
355
|
+
--lineHeightInEms: calc(1em * var(--lk-halfstep));
|
|
356
|
+
--spacing-md: var(--lineHeightInEms);
|
|
357
|
+
|
|
358
|
+
--spacing-sm: calc(var(--lineHeightInEms) * var(--lk-wholestep-dec));
|
|
359
|
+
--spacing-xs: calc(var(--lineHeightInEms) * var(--lk-halfstep-dec));
|
|
360
|
+
--spacing-2xs: calc(var(--lineHeightInEms) * var(--lk-quarterstep-dec));
|
|
361
|
+
|
|
362
|
+
--spacing-lg: calc(var(--lineHeightInEms) * var(--lk-wholestep));
|
|
363
|
+
--spacing-xl: calc(var(--spacing-lg) * var(--lk-wholestep));
|
|
364
|
+
--spacing-2xl: calc(var(--spacing-xl) * var(--lk-wholestep));
|
|
365
|
+
|
|
366
|
+
letter-spacing: -0.02em;
|
|
367
|
+
font-size: var(--title2-font-size);
|
|
368
|
+
font-weight: 400;
|
|
369
|
+
line-height: var(--lk-halfstep);
|
|
370
|
+
}
|
|
371
|
+
|
|
372
|
+
@utility title2-bold {
|
|
373
|
+
--lineHeightInEms: calc(1em * var(--lk-halfstep));
|
|
374
|
+
--spacing-md: var(--lineHeightInEms);
|
|
375
|
+
|
|
376
|
+
--spacing-sm: calc(var(--lineHeightInEms) * var(--lk-wholestep-dec));
|
|
377
|
+
--spacing-xs: calc(var(--lineHeightInEms) * var(--lk-halfstep-dec));
|
|
378
|
+
--spacing-2xs: calc(var(--lineHeightInEms) * var(--lk-quarterstep-dec));
|
|
379
|
+
|
|
380
|
+
--spacing-lg: calc(var(--lineHeightInEms) * var(--lk-wholestep));
|
|
381
|
+
--spacing-xl: calc(var(--spacing-lg) * var(--lk-wholestep));
|
|
382
|
+
--spacing-2xl: calc(var(--spacing-xl) * var(--lk-wholestep));
|
|
383
|
+
|
|
384
|
+
letter-spacing: -0.02em;
|
|
385
|
+
font-size: var(--title2-font-size);
|
|
386
|
+
font-weight: 600;
|
|
387
|
+
line-height: var(--lk-halfstep);
|
|
388
|
+
}
|
|
389
|
+
|
|
390
|
+
@utility title3 {
|
|
391
|
+
--lineHeightInEms: calc(1em * var(--lk-halfstep));
|
|
392
|
+
--spacing-md: var(--lineHeightInEms);
|
|
393
|
+
|
|
394
|
+
--spacing-sm: calc(var(--lineHeightInEms) * var(--lk-wholestep-dec));
|
|
395
|
+
--spacing-xs: calc(var(--lineHeightInEms) * var(--lk-halfstep-dec));
|
|
396
|
+
--spacing-2xs: calc(var(--lineHeightInEms) * var(--lk-quarterstep-dec));
|
|
397
|
+
|
|
398
|
+
--spacing-lg: calc(var(--lineHeightInEms) * var(--lk-wholestep));
|
|
399
|
+
--spacing-xl: calc(var(--spacing-lg) * var(--lk-wholestep));
|
|
400
|
+
--spacing-2xl: calc(var(--spacing-xl) * var(--lk-wholestep));
|
|
401
|
+
|
|
402
|
+
letter-spacing: -0.017em;
|
|
403
|
+
font-size: var(--title3-font-size);
|
|
404
|
+
font-weight: 400;
|
|
405
|
+
line-height: var(--lk-halfstep);
|
|
406
|
+
}
|
|
407
|
+
|
|
408
|
+
@utility title3-bold {
|
|
409
|
+
--lineHeightInEms: calc(1em * var(--lk-halfstep));
|
|
410
|
+
--spacing-md: var(--lineHeightInEms);
|
|
411
|
+
|
|
412
|
+
--spacing-sm: calc(var(--lineHeightInEms) * var(--lk-wholestep-dec));
|
|
413
|
+
--spacing-xs: calc(var(--lineHeightInEms) * var(--lk-halfstep-dec));
|
|
414
|
+
--spacing-2xs: calc(var(--lineHeightInEms) * var(--lk-quarterstep-dec));
|
|
415
|
+
|
|
416
|
+
--spacing-lg: calc(var(--lineHeightInEms) * var(--lk-wholestep));
|
|
417
|
+
--spacing-xl: calc(var(--spacing-lg) * var(--lk-wholestep));
|
|
418
|
+
--spacing-2xl: calc(var(--spacing-xl) * var(--lk-wholestep));
|
|
419
|
+
|
|
420
|
+
letter-spacing: -0.017em;
|
|
421
|
+
font-size: var(--title3-font-size);
|
|
422
|
+
font-weight: 600;
|
|
423
|
+
line-height: var(--lk-halfstep);
|
|
424
|
+
}
|
|
425
|
+
|
|
426
|
+
@utility heading {
|
|
427
|
+
--lineHeightInEms: calc(1em * var(--lk-halfstep));
|
|
428
|
+
--spacing-md: var(--lineHeightInEms);
|
|
429
|
+
|
|
430
|
+
--spacing-sm: calc(var(--lineHeightInEms) * var(--lk-wholestep-dec));
|
|
431
|
+
--spacing-xs: calc(var(--lineHeightInEms) * var(--lk-halfstep-dec));
|
|
432
|
+
--spacing-2xs: calc(var(--lineHeightInEms) * var(--lk-quarterstep-dec));
|
|
433
|
+
|
|
434
|
+
--spacing-lg: calc(var(--lineHeightInEms) * var(--lk-wholestep));
|
|
435
|
+
--spacing-xl: calc(var(--spacing-lg) * var(--lk-wholestep));
|
|
436
|
+
--spacing-2xl: calc(var(--spacing-xl) * var(--lk-wholestep));
|
|
437
|
+
|
|
438
|
+
letter-spacing: -0.014em;
|
|
439
|
+
font-size: var(--heading-font-size);
|
|
440
|
+
font-weight: 600;
|
|
441
|
+
line-height: var(--lk-halfstep);
|
|
442
|
+
}
|
|
443
|
+
|
|
444
|
+
@utility heading-bold {
|
|
445
|
+
--lineHeightInEms: calc(1em * var(--lk-halfstep));
|
|
446
|
+
--spacing-md: var(--lineHeightInEms);
|
|
447
|
+
|
|
448
|
+
--spacing-sm: calc(var(--lineHeightInEms) * var(--lk-wholestep-dec));
|
|
449
|
+
--spacing-xs: calc(var(--lineHeightInEms) * var(--lk-halfstep-dec));
|
|
450
|
+
--spacing-2xs: calc(var(--lineHeightInEms) * var(--lk-quarterstep-dec));
|
|
451
|
+
|
|
452
|
+
--spacing-lg: calc(var(--lineHeightInEms) * var(--lk-wholestep));
|
|
453
|
+
--spacing-xl: calc(var(--spacing-lg) * var(--lk-wholestep));
|
|
454
|
+
--spacing-2xl: calc(var(--spacing-xl) * var(--lk-wholestep));
|
|
455
|
+
|
|
456
|
+
letter-spacing: -0.014em;
|
|
457
|
+
font-size: var(--heading-font-size);
|
|
458
|
+
font-weight: 700;
|
|
459
|
+
line-height: var(--lk-halfstep);
|
|
460
|
+
}
|
|
461
|
+
|
|
462
|
+
@utility subheading {
|
|
463
|
+
--lineHeightInEms: calc(1em * var(--lk-halfstep));
|
|
464
|
+
--spacing-md: var(--lineHeightInEms);
|
|
465
|
+
|
|
466
|
+
--spacing-sm: calc(var(--lineHeightInEms) * var(--lk-wholestep-dec));
|
|
467
|
+
--spacing-xs: calc(var(--lineHeightInEms) * var(--lk-halfstep-dec));
|
|
468
|
+
--spacing-2xs: calc(var(--lineHeightInEms) * var(--lk-quarterstep-dec));
|
|
469
|
+
|
|
470
|
+
--spacing-lg: calc(var(--lineHeightInEms) * var(--lk-wholestep));
|
|
471
|
+
--spacing-xl: calc(var(--spacing-lg) * var(--lk-wholestep));
|
|
472
|
+
--spacing-2xl: calc(var(--spacing-xl) * var(--lk-wholestep));
|
|
473
|
+
|
|
474
|
+
letter-spacing: -0.007em;
|
|
475
|
+
font-size: var(--subheading-font-size);
|
|
476
|
+
font-weight: 400;
|
|
477
|
+
line-height: var(--lk-halfstep);
|
|
478
|
+
}
|
|
479
|
+
|
|
480
|
+
@utility subheading-bold {
|
|
481
|
+
--lineHeightInEms: calc(1em * var(--lk-halfstep));
|
|
482
|
+
--spacing-md: var(--lineHeightInEms);
|
|
483
|
+
|
|
484
|
+
--spacing-sm: calc(var(--lineHeightInEms) * var(--lk-wholestep-dec));
|
|
485
|
+
--spacing-xs: calc(var(--lineHeightInEms) * var(--lk-halfstep-dec));
|
|
486
|
+
--spacing-2xs: calc(var(--lineHeightInEms) * var(--lk-quarterstep-dec));
|
|
487
|
+
|
|
488
|
+
--spacing-lg: calc(var(--lineHeightInEms) * var(--lk-wholestep));
|
|
489
|
+
--spacing-xl: calc(var(--spacing-lg) * var(--lk-wholestep));
|
|
490
|
+
--spacing-2xl: calc(var(--spacing-xl) * var(--lk-wholestep));
|
|
491
|
+
|
|
492
|
+
letter-spacing: -0.007em;
|
|
493
|
+
font-size: var(--subheading-font-size);
|
|
494
|
+
font-weight: 600;
|
|
495
|
+
line-height: var(--lk-halfstep);
|
|
496
|
+
}
|
|
497
|
+
|
|
498
|
+
@utility body {
|
|
499
|
+
--lineHeightInEms: calc(1em * var(--lk-wholestep));
|
|
500
|
+
--spacing-md: var(--lineHeightInEms);
|
|
501
|
+
--spacing-sm: calc(var(--lineHeightInEms) * var(--lk-wholestep-dec));
|
|
502
|
+
--spacing-xs: calc(var(--lineHeightInEms) * var(--lk-halfstep-dec));
|
|
503
|
+
--spacing-2xs: calc(var(--lineHeightInEms) * var(--lk-quarterstep-dec));
|
|
504
|
+
|
|
505
|
+
--spacing-lg: calc(var(--lineHeightInEms) * var(--lk-wholestep));
|
|
506
|
+
--spacing-xl: calc(var(--spacing-lg) * var(--lk-wholestep));
|
|
507
|
+
--spacing-2xl: calc(var(--spacing-xl) * var(--lk-wholestep));
|
|
508
|
+
|
|
509
|
+
letter-spacing: -0.011em;
|
|
510
|
+
font-size: 1em;
|
|
511
|
+
font-weight: 400;
|
|
512
|
+
line-height: var(--lk-wholestep);
|
|
513
|
+
}
|
|
514
|
+
|
|
515
|
+
@utility body-bold {
|
|
516
|
+
--lineHeightInEms: calc(1em * var(--lk-wholestep));
|
|
517
|
+
--spacing-md: var(--lineHeightInEms);
|
|
518
|
+
--spacing-sm: calc(var(--lineHeightInEms) * var(--lk-wholestep-dec));
|
|
519
|
+
--spacing-xs: calc(var(--lineHeightInEms) * var(--lk-halfstep-dec));
|
|
520
|
+
--spacing-2xs: calc(var(--lineHeightInEms) * var(--lk-quarterstep-dec));
|
|
521
|
+
|
|
522
|
+
--spacing-lg: calc(var(--lineHeightInEms) * var(--lk-wholestep));
|
|
523
|
+
--spacing-xl: calc(var(--spacing-lg) * var(--lk-wholestep));
|
|
524
|
+
--spacing-2xl: calc(var(--spacing-xl) * var(--lk-wholestep));
|
|
525
|
+
|
|
526
|
+
letter-spacing: -0.011em;
|
|
527
|
+
padding: 0;
|
|
528
|
+
font-size: 1em;
|
|
529
|
+
font-weight: 600;
|
|
530
|
+
line-height: var(--lk-halfstep);
|
|
531
|
+
}
|
|
532
|
+
|
|
533
|
+
@utility callout {
|
|
534
|
+
--lineHeightInEms: calc(1em * var(--lk-halfstep));
|
|
535
|
+
--spacing-md: var(--lineHeightInEms);
|
|
536
|
+
|
|
537
|
+
--spacing-sm: calc(var(--lineHeightInEms) * var(--lk-wholestep-dec));
|
|
538
|
+
--spacing-xs: calc(var(--lineHeightInEms) * var(--lk-halfstep-dec));
|
|
539
|
+
--spacing-2xs: calc(var(--lineHeightInEms) * var(--lk-quarterstep-dec));
|
|
540
|
+
|
|
541
|
+
--spacing-lg: calc(var(--lineHeightInEms) * var(--lk-wholestep));
|
|
542
|
+
--spacing-xl: calc(var(--spacing-lg) * var(--lk-wholestep));
|
|
543
|
+
--spacing-2xl: calc(var(--spacing-xl) * var(--lk-wholestep));
|
|
544
|
+
|
|
545
|
+
letter-spacing: -0.009em;
|
|
546
|
+
font-size: var(--callout-font-size);
|
|
547
|
+
font-weight: 400;
|
|
548
|
+
line-height: var(--lk-halfstep);
|
|
549
|
+
}
|
|
550
|
+
|
|
551
|
+
@utility callout-bold {
|
|
552
|
+
--lineHeightInEms: calc(1em * var(--lk-halfstep));
|
|
553
|
+
--spacing-md: var(--lineHeightInEms);
|
|
554
|
+
|
|
555
|
+
--spacing-sm: calc(var(--lineHeightInEms) * var(--lk-wholestep-dec));
|
|
556
|
+
--spacing-xs: calc(var(--lineHeightInEms) * var(--lk-halfstep-dec));
|
|
557
|
+
--spacing-2xs: calc(var(--lineHeightInEms) * var(--lk-quarterstep-dec));
|
|
558
|
+
|
|
559
|
+
--spacing-lg: calc(var(--lineHeightInEms) * var(--lk-wholestep));
|
|
560
|
+
--spacing-xl: calc(var(--spacing-lg) * var(--lk-wholestep));
|
|
561
|
+
--spacing-2xl: calc(var(--spacing-xl) * var(--lk-wholestep));
|
|
562
|
+
|
|
563
|
+
letter-spacing: -0.009em;
|
|
564
|
+
font-size: var(--callout-font-size);
|
|
565
|
+
font-weight: 600;
|
|
566
|
+
line-height: var(--lk-halfstep);
|
|
567
|
+
text-decoration: none;
|
|
568
|
+
}
|
|
569
|
+
|
|
570
|
+
@utility label {
|
|
571
|
+
--lineHeightInEms: calc(1em * var(--lk-halfstep));
|
|
572
|
+
--spacing-md: var(--lineHeightInEms);
|
|
573
|
+
|
|
574
|
+
--spacing-sm: calc(var(--lineHeightInEms) * var(--lk-wholestep-dec));
|
|
575
|
+
--spacing-xs: calc(var(--lineHeightInEms) * var(--lk-halfstep-dec));
|
|
576
|
+
--spacing-2xs: calc(var(--lineHeightInEms) * var(--lk-quarterstep-dec));
|
|
577
|
+
|
|
578
|
+
--spacing-lg: calc(var(--lineHeightInEms) * var(--lk-wholestep));
|
|
579
|
+
--spacing-xl: calc(var(--spacing-lg) * var(--lk-wholestep));
|
|
580
|
+
--spacing-2xl: calc(var(--spacing-xl) * var(--lk-wholestep));
|
|
581
|
+
|
|
582
|
+
letter-spacing: -0.004em;
|
|
583
|
+
font-size: var(--label-font-size);
|
|
584
|
+
font-weight: 600;
|
|
585
|
+
line-height: var(--lk-halfstep);
|
|
586
|
+
}
|
|
587
|
+
|
|
588
|
+
@utility label-bold {
|
|
589
|
+
--lineHeightInEms: calc(1em * var(--lk-halfstep));
|
|
590
|
+
--spacing-md: var(--lineHeightInEms);
|
|
591
|
+
|
|
592
|
+
--spacing-sm: calc(var(--lineHeightInEms) * var(--lk-wholestep-dec));
|
|
593
|
+
--spacing-xs: calc(var(--lineHeightInEms) * var(--lk-halfstep-dec));
|
|
594
|
+
--spacing-2xs: calc(var(--lineHeightInEms) * var(--lk-quarterstep-dec));
|
|
595
|
+
|
|
596
|
+
--spacing-lg: calc(var(--lineHeightInEms) * var(--lk-wholestep));
|
|
597
|
+
--spacing-xl: calc(var(--spacing-lg) * var(--lk-wholestep));
|
|
598
|
+
--spacing-2xl: calc(var(--spacing-xl) * var(--lk-wholestep));
|
|
599
|
+
|
|
600
|
+
letter-spacing: -0.004em;
|
|
601
|
+
font-size: var(--label-font-size);
|
|
602
|
+
font-weight: 700;
|
|
603
|
+
line-height: var(--lk-halfstep);
|
|
604
|
+
}
|
|
605
|
+
|
|
606
|
+
@utility caption {
|
|
607
|
+
--lineHeightInEms: calc(1em * var(--lk-halfstep));
|
|
608
|
+
--spacing-md: var(--lineHeightInEms);
|
|
609
|
+
|
|
610
|
+
--spacing-sm: calc(var(--lineHeightInEms) * var(--lk-wholestep-dec));
|
|
611
|
+
--spacing-xs: calc(var(--lineHeightInEms) * var(--lk-halfstep-dec));
|
|
612
|
+
--spacing-2xs: calc(var(--lineHeightInEms) * var(--lk-quarterstep-dec));
|
|
613
|
+
|
|
614
|
+
--spacing-lg: calc(var(--lineHeightInEms) * var(--lk-wholestep));
|
|
615
|
+
--spacing-xl: calc(var(--spacing-lg) * var(--lk-wholestep));
|
|
616
|
+
--spacing-2xl: calc(var(--spacing-xl) * var(--lk-wholestep));
|
|
617
|
+
|
|
618
|
+
letter-spacing: -0.007em;
|
|
619
|
+
font-size: var(--caption-font-size);
|
|
620
|
+
font-weight: 400;
|
|
621
|
+
line-height: var(--lk-halfstep);
|
|
622
|
+
}
|
|
623
|
+
|
|
624
|
+
@utility caption-bold {
|
|
625
|
+
--lineHeightInEms: calc(1em * var(--lk-halfstep));
|
|
626
|
+
--spacing-md: var(--lineHeightInEms);
|
|
627
|
+
|
|
628
|
+
--spacing-sm: calc(var(--lineHeightInEms) * var(--lk-wholestep-dec));
|
|
629
|
+
--spacing-xs: calc(var(--lineHeightInEms) * var(--lk-halfstep-dec));
|
|
630
|
+
--spacing-2xs: calc(var(--lineHeightInEms) * var(--lk-quarterstep-dec));
|
|
631
|
+
|
|
632
|
+
--spacing-lg: calc(var(--lineHeightInEms) * var(--lk-wholestep));
|
|
633
|
+
--spacing-xl: calc(var(--spacing-lg) * var(--lk-wholestep));
|
|
634
|
+
--spacing-2xl: calc(var(--spacing-xl) * var(--lk-wholestep));
|
|
635
|
+
|
|
636
|
+
letter-spacing: -0.007em;
|
|
637
|
+
font-size: var(--caption-font-size);
|
|
638
|
+
font-weight: 600;
|
|
639
|
+
line-height: var(--lk-halfstep);
|
|
640
|
+
}
|
|
641
|
+
|
|
642
|
+
@utility capline {
|
|
643
|
+
--lineHeightInEms: calc(1em * var(--lk-halfstep));
|
|
644
|
+
--spacing-md: var(--lineHeightInEms);
|
|
645
|
+
|
|
646
|
+
--spacing-sm: calc(var(--lineHeightInEms) * var(--lk-wholestep-dec));
|
|
647
|
+
--spacing-xs: calc(var(--lineHeightInEms) * var(--lk-halfstep-dec));
|
|
648
|
+
--spacing-2xs: calc(var(--lineHeightInEms) * var(--lk-quarterstep-dec));
|
|
649
|
+
|
|
650
|
+
--spacing-lg: calc(var(--lineHeightInEms) * var(--lk-wholestep));
|
|
651
|
+
--spacing-xl: calc(var(--spacing-lg) * var(--lk-wholestep));
|
|
652
|
+
--spacing-2xl: calc(var(--spacing-xl) * var(--lk-wholestep));
|
|
653
|
+
|
|
654
|
+
letter-spacing: 0.0618em;
|
|
655
|
+
text-transform: uppercase;
|
|
656
|
+
font-size: var(--capline-font-size);
|
|
657
|
+
font-weight: 400;
|
|
658
|
+
line-height: var(--lk-halfstep);
|
|
659
|
+
}
|
|
660
|
+
|
|
661
|
+
@utility capline-bold {
|
|
662
|
+
--lineHeightInEms: calc(1em * var(--lk-halfstep));
|
|
663
|
+
--spacing-md: var(--lineHeightInEms);
|
|
664
|
+
|
|
665
|
+
--spacing-sm: calc(var(--lineHeightInEms) * var(--lk-wholestep-dec));
|
|
666
|
+
--spacing-xs: calc(var(--lineHeightInEms) * var(--lk-halfstep-dec));
|
|
667
|
+
--spacing-2xs: calc(var(--lineHeightInEms) * var(--lk-quarterstep-dec));
|
|
668
|
+
|
|
669
|
+
--spacing-lg: calc(var(--lineHeightInEms) * var(--lk-wholestep));
|
|
670
|
+
--spacing-xl: calc(var(--spacing-lg) * var(--lk-wholestep));
|
|
671
|
+
--spacing-2xl: calc(var(--spacing-xl) * var(--lk-wholestep));
|
|
672
|
+
|
|
673
|
+
letter-spacing: 0.0618em;
|
|
674
|
+
text-transform: uppercase;
|
|
675
|
+
font-size: var(--capline-font-size);
|
|
676
|
+
font-weight: 600;
|
|
677
|
+
line-height: var(--lk-halfstep);
|
|
678
|
+
}
|
|
679
|
+
|
|
680
|
+
@utility scrim {
|
|
681
|
+
position: absolute;
|
|
682
|
+
top: 0;
|
|
683
|
+
left: 0;
|
|
684
|
+
width: 100%;
|
|
685
|
+
height: 100%;
|
|
686
|
+
background-color: var(--lk-scrim);
|
|
687
|
+
opacity: 0.5;
|
|
688
|
+
z-index: -1;
|
|
689
|
+
}
|
package/css/index.d.ts
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export * from "@/registry/universal/lib/css/types/lk-color";
|
|
2
|
+
export * from "@/registry/universal/lib/css/types/lk-material";
|
|
3
|
+
export * from "@/registry/universal/lib/css/types/lk-shape";
|
|
4
|
+
export * from "@/registry/universal/lib/css/types/lk-typography";
|
|
5
|
+
export * from "@/registry/universal/lib/css/types/lk-units";
|
|
6
|
+
export * from "@/registry/universal/lib/css/types/lk-utility";
|