bigbluebutton-Github/bigbluebutton-html5/imports/ui/stylesheets/styled-components/typography.js

39 lines
867 B
JavaScript
Raw Normal View History

2021-10-21 00:53:08 +08:00
const lineHeightComputed = '1rem';
const lineHeightBase = '1.25';
2021-10-21 22:32:18 +08:00
const fontSizeBase = '1rem';
2021-10-21 20:52:02 +08:00
const fontSizeSmall = '0.875rem';
const fontSizeSmaller = '.75rem';
2021-11-10 19:37:08 +08:00
const fontSizeSmallest = '.35rem';
2021-10-21 20:52:02 +08:00
const fontSizeXS = '.575rem';
2021-10-26 20:37:26 +08:00
const fontSizeLarge = '1.25rem';
const fontSizeLarger = '1.5rem';
2021-10-28 01:07:09 +08:00
const fontSizeXL = '1.75rem';
2021-11-11 03:10:35 +08:00
const fontSizeXXL = '2.75rem';
2021-10-28 01:07:09 +08:00
const fontSizeMD = '0.95rem';
2021-10-26 20:37:26 +08:00
const headingsFontWeight = '500';
const btnFontWeight = '600';
2021-11-03 00:25:39 +08:00
const talkerFontWeight = '400';
2021-11-03 01:11:41 +08:00
const toolbarButtonFontSize = '1.75rem';
const modalTitleFw = '400';
2021-10-21 00:53:08 +08:00
export {
lineHeightComputed,
lineHeightBase,
2021-10-21 22:32:18 +08:00
fontSizeBase,
2021-10-21 20:52:02 +08:00
fontSizeSmall,
fontSizeSmaller,
2021-11-10 19:37:08 +08:00
fontSizeSmallest,
2021-10-21 20:52:02 +08:00
fontSizeXS,
2021-10-26 20:37:26 +08:00
fontSizeLarge,
fontSizeLarger,
2021-10-28 01:07:09 +08:00
fontSizeXL,
2021-11-11 03:10:35 +08:00
fontSizeXXL,
2021-10-28 01:07:09 +08:00
fontSizeMD,
2021-10-26 20:37:26 +08:00
headingsFontWeight,
btnFontWeight,
2021-11-03 00:25:39 +08:00
talkerFontWeight,
2021-11-03 01:11:41 +08:00
toolbarButtonFontSize,
modalTitleFw,
2021-10-21 20:52:02 +08:00
};