@material-ui/core
Version:
React components that implement Google's Material Design.
138 lines (127 loc) • 5.04 kB
JavaScript
"use strict";
var _interopRequireDefault = require("@babel/runtime/helpers/builtin/interopRequireDefault");
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = createTypography;
var _objectSpread2 = _interopRequireDefault(require("@babel/runtime/helpers/builtin/objectSpread"));
var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/builtin/objectWithoutProperties"));
var _deepmerge = _interopRequireDefault(require("deepmerge"));
// < 1kb payload overhead when lodash/merge is > 3kb.
function round(value) {
return Math.round(value * 1e5) / 1e5;
}
function createTypography(palette, typography) {
var _ref = typeof typography === 'function' ? typography(palette) : typography,
_ref$fontFamily = _ref.fontFamily,
fontFamily = _ref$fontFamily === void 0 ? '"Roboto", "Helvetica", "Arial", sans-serif' : _ref$fontFamily,
_ref$fontSize = _ref.fontSize,
fontSize = _ref$fontSize === void 0 ? 14 : _ref$fontSize,
_ref$fontWeightLight = _ref.fontWeightLight,
fontWeightLight = _ref$fontWeightLight === void 0 ? 300 : _ref$fontWeightLight,
_ref$fontWeightRegula = _ref.fontWeightRegular,
fontWeightRegular = _ref$fontWeightRegula === void 0 ? 400 : _ref$fontWeightRegula,
_ref$fontWeightMedium = _ref.fontWeightMedium,
fontWeightMedium = _ref$fontWeightMedium === void 0 ? 500 : _ref$fontWeightMedium,
_ref$htmlFontSize = _ref.htmlFontSize,
htmlFontSize = _ref$htmlFontSize === void 0 ? 16 : _ref$htmlFontSize,
allVariants = _ref.allVariants,
other = (0, _objectWithoutProperties2.default)(_ref, ["fontFamily", "fontSize", "fontWeightLight", "fontWeightRegular", "fontWeightMedium", "htmlFontSize", "allVariants"]);
var coef = fontSize / 14;
function pxToRem(value) {
return "".concat(value / htmlFontSize * coef, "rem");
}
return (0, _deepmerge.default)({
pxToRem: pxToRem,
round: round,
fontFamily: fontFamily,
fontSize: fontSize,
fontWeightLight: fontWeightLight,
fontWeightRegular: fontWeightRegular,
fontWeightMedium: fontWeightMedium,
display4: (0, _objectSpread2.default)({
fontSize: pxToRem(112),
fontWeight: fontWeightLight,
fontFamily: fontFamily,
letterSpacing: '-.04em',
lineHeight: "".concat(round(128 / 112), "em"),
marginLeft: '-.04em',
color: palette.text.secondary
}, allVariants),
display3: (0, _objectSpread2.default)({
fontSize: pxToRem(56),
fontWeight: fontWeightRegular,
fontFamily: fontFamily,
letterSpacing: '-.02em',
lineHeight: "".concat(round(73 / 56), "em"),
marginLeft: '-.02em',
color: palette.text.secondary
}, allVariants),
display2: (0, _objectSpread2.default)({
fontSize: pxToRem(45),
fontWeight: fontWeightRegular,
fontFamily: fontFamily,
lineHeight: "".concat(round(48 / 45), "em"),
marginLeft: '-.02em',
color: palette.text.secondary
}, allVariants),
display1: (0, _objectSpread2.default)({
fontSize: pxToRem(34),
fontWeight: fontWeightRegular,
fontFamily: fontFamily,
lineHeight: "".concat(round(41 / 34), "em"),
color: palette.text.secondary
}, allVariants),
headline: (0, _objectSpread2.default)({
fontSize: pxToRem(24),
fontWeight: fontWeightRegular,
fontFamily: fontFamily,
lineHeight: "".concat(round(32.5 / 24), "em"),
color: palette.text.primary
}, allVariants),
title: (0, _objectSpread2.default)({
fontSize: pxToRem(21),
fontWeight: fontWeightMedium,
fontFamily: fontFamily,
lineHeight: "".concat(round(24.5 / 21), "em"),
color: palette.text.primary
}, allVariants),
subheading: (0, _objectSpread2.default)({
fontSize: pxToRem(16),
fontWeight: fontWeightRegular,
fontFamily: fontFamily,
lineHeight: "".concat(round(24 / 16), "em"),
color: palette.text.primary
}, allVariants),
body2: (0, _objectSpread2.default)({
fontSize: pxToRem(14),
fontWeight: fontWeightMedium,
fontFamily: fontFamily,
lineHeight: "".concat(round(24 / 14), "em"),
color: palette.text.primary
}, allVariants),
body1: (0, _objectSpread2.default)({
fontSize: pxToRem(14),
fontWeight: fontWeightRegular,
fontFamily: fontFamily,
lineHeight: "".concat(round(20.5 / 14), "em"),
color: palette.text.primary
}, allVariants),
caption: (0, _objectSpread2.default)({
fontSize: pxToRem(12),
fontWeight: fontWeightRegular,
fontFamily: fontFamily,
lineHeight: "".concat(round(16.5 / 12), "em"),
color: palette.text.secondary
}, allVariants),
button: (0, _objectSpread2.default)({
fontSize: pxToRem(14),
textTransform: 'uppercase',
fontWeight: fontWeightMedium,
fontFamily: fontFamily,
color: palette.text.primary
}, allVariants)
}, other, {
clone: false // No need to clone deep
});
}