@photoroom/ui 0.1.42 → 0.1.44
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 +1 -1
- package/plugins/typography.js +63 -0
package/package.json
CHANGED
package/plugins/typography.js
CHANGED
|
@@ -250,6 +250,69 @@ module.exports = plugin(({ addComponents }) => {
|
|
|
250
250
|
},
|
|
251
251
|
});
|
|
252
252
|
|
|
253
|
+
/**
|
|
254
|
+
* Headings Thin
|
|
255
|
+
* https://figma.com/design/cHgANa7dtzDDGXk7dKuAOQ/Prism?node-id=23281-8050&t=jhbOdzGMbMu9mJNm-4
|
|
256
|
+
*/
|
|
257
|
+
addComponents({
|
|
258
|
+
".heading-thin-300": {
|
|
259
|
+
"@apply text-500": {},
|
|
260
|
+
"@apply font-500": {},
|
|
261
|
+
"@apply leading-500": {},
|
|
262
|
+
},
|
|
263
|
+
".heading-thin-400": {
|
|
264
|
+
"@apply text-600": {},
|
|
265
|
+
"@apply font-500": {},
|
|
266
|
+
"@apply leading-500": {},
|
|
267
|
+
},
|
|
268
|
+
".heading-thin-500": {
|
|
269
|
+
"@apply text-700": {},
|
|
270
|
+
"@apply font-500": {},
|
|
271
|
+
"@apply leading-500": {},
|
|
272
|
+
},
|
|
273
|
+
".heading-thin-600": {
|
|
274
|
+
"@apply text-800": {},
|
|
275
|
+
"@apply font-500": {},
|
|
276
|
+
"@apply leading-500": {},
|
|
277
|
+
},
|
|
278
|
+
".heading-thin-700": {
|
|
279
|
+
"@apply text-900": {},
|
|
280
|
+
"@apply font-500": {},
|
|
281
|
+
"@apply leading-400": {},
|
|
282
|
+
"@apply -tracking-[0.058px]": {},
|
|
283
|
+
},
|
|
284
|
+
".heading-thin-800": {
|
|
285
|
+
"@apply text-1000": {},
|
|
286
|
+
"@apply font-500": {},
|
|
287
|
+
"@apply leading-400": {},
|
|
288
|
+
"@apply -tracking-[0.175px]": {},
|
|
289
|
+
},
|
|
290
|
+
".heading-thin-900": {
|
|
291
|
+
"@apply text-1100": {},
|
|
292
|
+
"@apply font-500": {},
|
|
293
|
+
"@apply leading-400": {},
|
|
294
|
+
"@apply -tracking-[0.357px]": {},
|
|
295
|
+
},
|
|
296
|
+
".heading-thin-1000": {
|
|
297
|
+
"@apply text-1200": {},
|
|
298
|
+
"@apply font-500": {},
|
|
299
|
+
"@apply leading-400": {},
|
|
300
|
+
"@apply -tracking-[0.625px]": {},
|
|
301
|
+
},
|
|
302
|
+
".heading-thin-1100": {
|
|
303
|
+
"@apply text-1300": {},
|
|
304
|
+
"@apply font-500": {},
|
|
305
|
+
"@apply leading-400": {},
|
|
306
|
+
"@apply -tracking-[1.05px]": {},
|
|
307
|
+
},
|
|
308
|
+
".heading-thin-1200": {
|
|
309
|
+
"@apply text-1400": {},
|
|
310
|
+
"@apply font-500": {},
|
|
311
|
+
"@apply leading-400": {},
|
|
312
|
+
"@apply -tracking-[1.692px]": {},
|
|
313
|
+
},
|
|
314
|
+
});
|
|
315
|
+
|
|
253
316
|
/**
|
|
254
317
|
* Headings Light
|
|
255
318
|
* https://www.figma.com/file/cHgANa7dtzDDGXk7dKuAOQ/%F0%9F%9B%A0-Design-System?node-id=7285%3A13522
|