This repository was archived by the owner on May 13, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 122
Allow to customize font familyΒ #79
Copy link
Copy link
Open
Labels
Description
Feature request
What problem does this feature solve?
Currently, font-family in some places is hard-coded to PT Serif, Serif
. Therefore, if you want to use a different font for your own need, it's not possible unless:
- Override the view
- Override @font-face
I believe both of the approaches are not elegant.
What does the proposed API look like?
Allow to override $font-family-serif
in index.styl
or palette.styl
like:
$font-family-serif = 'Noto Serif', Serif
How should this be implemented in your opinion?
Some hard-coded place like:
.vuepress-blog-theme-content
font-family PT Serif, Serif
will be changed to
.vuepress-blog-theme-content
font-family $font-family-serif
Are you willing to work on this yourself?
Yes
schw4rzlicht and Giacomo92