60 lines
1.6 KiB
JavaScript
60 lines
1.6 KiB
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
function _export(target, all) {
|
|
for(var name in all)Object.defineProperty(target, name, {
|
|
enumerable: true,
|
|
get: all[name]
|
|
});
|
|
}
|
|
_export(exports, {
|
|
fontSizes: function() {
|
|
return fontSizes;
|
|
},
|
|
lineHeights: function() {
|
|
return lineHeights;
|
|
},
|
|
fontWeights: function() {
|
|
return fontWeights;
|
|
},
|
|
fontFamilies: function() {
|
|
return fontFamilies;
|
|
}
|
|
});
|
|
const fontSizes = {
|
|
fontSizeBase100: '10px',
|
|
fontSizeBase200: '12px',
|
|
fontSizeBase300: '14px',
|
|
fontSizeBase400: '16px',
|
|
fontSizeBase500: '20px',
|
|
fontSizeBase600: '24px',
|
|
fontSizeHero700: '28px',
|
|
fontSizeHero800: '32px',
|
|
fontSizeHero900: '40px',
|
|
fontSizeHero1000: '68px'
|
|
};
|
|
const lineHeights = {
|
|
lineHeightBase100: '14px',
|
|
lineHeightBase200: '16px',
|
|
lineHeightBase300: '20px',
|
|
lineHeightBase400: '22px',
|
|
lineHeightBase500: '28px',
|
|
lineHeightBase600: '32px',
|
|
lineHeightHero700: '36px',
|
|
lineHeightHero800: '40px',
|
|
lineHeightHero900: '52px',
|
|
lineHeightHero1000: '92px'
|
|
};
|
|
const fontWeights = {
|
|
fontWeightRegular: 400,
|
|
fontWeightMedium: 500,
|
|
fontWeightSemibold: 600,
|
|
fontWeightBold: 700
|
|
};
|
|
const fontFamilies = {
|
|
fontFamilyBase: "'Segoe UI', 'Segoe UI Web (West European)', -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', sans-serif",
|
|
fontFamilyMonospace: "Consolas, 'Courier New', Courier, monospace",
|
|
fontFamilyNumeric: "Bahnschrift, 'Segoe UI', 'Segoe UI Web (West European)', -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', sans-serif"
|
|
};
|