chore: font updates

This commit is contained in:
Cory Dransfeldt 2023-09-15 10:24:01 -07:00
parent 66f461fa93
commit a2b6303f78
No known key found for this signature in database
2 changed files with 3 additions and 1 deletions

View file

@ -13,6 +13,7 @@ module.exports = {
14: '3.5rem',
},
fontFamily: {
sans: ['Inter', ...defaultTheme.fontFamily.sans],
mono: ['ui-monospace', 'SFMono-Regular', ...defaultTheme.fontFamily.mono],
},
backgroundImage: {

View file

@ -16,6 +16,7 @@ body {
}
body, html {
@apply font-sans;
color: theme(colors.gray.900)
}
@ -132,7 +133,7 @@ pre {
}
code[class*=language-], pre[class*=language-] {
font-family: ui-monospace, SFMono-Regular, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace !important;
@apply font-mono;
font-weight: 400 !important;
}