28 lines
988 B
JavaScript
28 lines
988 B
JavaScript
|
"use strict";
|
||
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||
|
exports.default = {
|
||
|
fontFamily: 'v-sans, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"',
|
||
|
fontFamilyMono: 'v-mono, SFMono-Regular, Menlo, Consolas, Courier, monospace',
|
||
|
fontWeight: '400',
|
||
|
fontWeightStrong: '500',
|
||
|
cubicBezierEaseInOut: 'cubic-bezier(.4, 0, .2, 1)',
|
||
|
cubicBezierEaseOut: 'cubic-bezier(0, 0, .2, 1)',
|
||
|
cubicBezierEaseIn: 'cubic-bezier(.4, 0, 1, 1)',
|
||
|
borderRadius: '3px',
|
||
|
borderRadiusSmall: '2px',
|
||
|
fontSize: '14px',
|
||
|
fontSizeMini: '12px',
|
||
|
fontSizeTiny: '12px',
|
||
|
fontSizeSmall: '14px',
|
||
|
fontSizeMedium: '14px',
|
||
|
fontSizeLarge: '15px',
|
||
|
fontSizeHuge: '16px',
|
||
|
lineHeight: '1.6',
|
||
|
heightMini: '16px', // private now, it's too small
|
||
|
heightTiny: '22px',
|
||
|
heightSmall: '28px',
|
||
|
heightMedium: '34px',
|
||
|
heightLarge: '40px',
|
||
|
heightHuge: '46px'
|
||
|
};
|