changing the font to open sans for typography in theme.ts, and making the toggled one bold

This commit is contained in:
csawatzky 2025-05-14 15:25:51 -06:00
parent 62cc0a2e97
commit 39a90c93cb
2 changed files with 16 additions and 2 deletions

View file

@ -17,6 +17,20 @@ const baseTheme: ThemeOptions = {
paper: '#f5f5f5',
},
},
typography: {
fontFamily: [
"Open Sans",
"-apple-system",
"BlinkMacSystemFont",
'"Segoe UI"',
'"Helvetica Neue"',
"Arial",
"sans-serif",
'"Apple Color Emoji"',
'"Segoe UI Emoji"',
'"Segoe UI Symbol"'
].join(",")
}
// Add other options if needed
};