mirror of
https://github.com/stefanpejcic/openpanel
synced 2025-06-26 18:28:26 +00:00
18 lines
437 B
TypeScript
18 lines
437 B
TypeScript
import type { TypographyVariantsOptions } from "@mui/material/styles";
|
|
|
|
export const typography: TypographyVariantsOptions = {
|
|
fontFamily: [
|
|
"Montserrat",
|
|
"-apple-system",
|
|
"BlinkMacSystemFont",
|
|
'"Segoe UI"',
|
|
"Roboto",
|
|
'"Helvetica Neue"',
|
|
"Arial",
|
|
"sans-serif",
|
|
'"Apple Color Emoji"',
|
|
'"Segoe UI Emoji"',
|
|
'"Segoe UI Symbol"',
|
|
].join(","),
|
|
};
|