MUI의 Typolaphy 오버클록 설정

8229 단어 muitech
나는 매번 MUI의 Typolaphy 글씨체 크기에 신경을 쓰기 때문에 이것은 괜찮은 디지털 노트이다.
똑똑한 방법이 있다면 알고 싶어요.
예1
export const theme = createTheme({
  typography: {
    fontSize: 14,
    fontWeightLight: 300,
    fontWeightRegular: 400,
    fontWeightMedium: 700,

    h1: { fontSize: 60 },
    h2: { fontSize: 48 },
    h3: { fontSize: 42 },
    h4: { fontSize: 36 },
    h5: { fontSize: 20 },
    h6: { fontSize: 18 },
    subtitle1: { fontSize: 18 },
    body1: { fontSize: 16 },
    button: { textTransform: 'none' },
  },
})
예2
const defaultTheme = createTheme({})
const { pxToRem } = defaultTheme.typography

export const theme = createTheme({
  h1: { fontSize: pxToRem(60) },
  h2: { fontSize: pxToRem(48) },
  h3: { fontSize: pxToRem(42) },
  h4: { fontSize: pxToRem(36) },
  h5: { fontSize: pxToRem(20) },
  h6: { fontSize: pxToRem(18) },
  subtitle1: { fontSize: pxToRem(18) },
  body1: { fontSize: pxToRem(16) },
})

좋은 웹페이지 즐겨찾기