nuxt-themes / alpine

The minimalist blog theme, powered by Nuxt & Markdown.
https://alpine.nuxt.space
MIT License
294 stars 54 forks source link

[Configuration] Custom font usage #88

Open bdrtsky opened 1 year ago

bdrtsky commented 1 year ago

Not sure about best way to have default custom font for theme, while allowing user to overwrite it.

bdrtsky commented 1 year ago

@Tahul would love to have your thoughts on this topic

Tahul commented 1 year ago

We can now change the default font from Typography!

As Alpine uses it, you can change it from there:

tokens.config.ts:

defineTheme({
   font: {
      sans: '',
      serif: '',
      mono: ''
   }
})