source: frontend/node_modules/postcss-minify-font-values/src/lib/keywords.js

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 12 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 627 bytes
RevLine 
[9af201e]1'use strict';
2module.exports = {
3 style: new Set(['italic', 'oblique']),
4 variant: new Set(['small-caps']),
5 weight: new Set([
6 '100',
7 '200',
8 '300',
9 '400',
10 '500',
11 '600',
12 '700',
13 '800',
14 '900',
15 'bold',
16 'lighter',
17 'bolder',
18 ]),
19 stretch: new Set([
20 'ultra-condensed',
21 'extra-condensed',
22 'condensed',
23 'semi-condensed',
24 'semi-expanded',
25 'expanded',
26 'extra-expanded',
27 'ultra-expanded',
28 ]),
29 size: new Set([
30 'xx-small',
31 'x-small',
32 'small',
33 'medium',
34 'large',
35 'x-large',
36 'xx-large',
37 'larger',
38 'smaller',
39 ]),
40};
Note: See TracBrowser for help on using the repository browser.