File size: 458 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
import { defineTokens } from "../../styled-system"
const fallback = `-apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"`
export const fonts = defineTokens.fonts({
heading: {
value: `Inter, ${fallback}`,
},
body: {
value: `Inter, ${fallback}`,
},
mono: {
value: `SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace`,
},
})
|