UNPKG

next-material-kit

Version:

NextJS Version of Material Kit React by Creative Tim (https://creative-tim.com)

62 lines (59 loc) 1.03 kB
import { defaultFont, primaryColor, infoColor, successColor, warningColor, dangerColor, } from "styles/jss/nextjs-material-kit.js"; const typographyStyle = { defaultFontStyle: { ...defaultFont, fontSize: "14px", }, defaultHeaderMargins: { marginTop: "20px", marginBottom: "10px", }, quote: { padding: "10px 20px", margin: "0 0 20px", fontSize: "17.5px", borderLeft: "5px solid #eee", }, quoteText: { margin: "0 0 10px", fontStyle: "italic", }, quoteAuthor: { display: "block", fontSize: "80%", lineHeight: "1.42857143", color: "#777", }, mutedText: { color: "#777", }, primaryText: { color: primaryColor, }, infoText: { color: infoColor, }, successText: { color: successColor, }, warningText: { color: warningColor, }, dangerText: { color: dangerColor, }, smallText: { fontSize: "65%", fontWeight: "400", lineHeight: "1", color: "#777", }, }; export default typographyStyle;