mirror of
https://github.com/ente-io/ente.git
synced 2025-05-24 03:59:22 +00:00
42 lines
833 B
TypeScript
42 lines
833 B
TypeScript
import type { TypographyOptions } from "@mui/material/styles/createTypography";
|
|
|
|
export const typography: TypographyOptions = {
|
|
h1: {
|
|
fontSize: "48px",
|
|
lineHeight: "58px",
|
|
},
|
|
h2: {
|
|
fontSize: "32px",
|
|
lineHeight: "39px",
|
|
},
|
|
h3: {
|
|
fontSize: "24px",
|
|
lineHeight: "29px",
|
|
},
|
|
h4: {
|
|
fontSize: "22px",
|
|
lineHeight: "27px",
|
|
},
|
|
large: {
|
|
fontSize: "18px",
|
|
lineHeight: "22px",
|
|
},
|
|
body: {
|
|
fontSize: "16px",
|
|
lineHeight: "20px",
|
|
},
|
|
small: {
|
|
fontSize: "14px",
|
|
lineHeight: "17px",
|
|
},
|
|
mini: {
|
|
fontSize: "12px",
|
|
lineHeight: "15px",
|
|
},
|
|
tiny: {
|
|
fontSize: "10px",
|
|
lineHeight: "12px",
|
|
},
|
|
fontFamily: ["Inter", "sans-serif"].join(","),
|
|
};
|