We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Themes should be able to declare overridable named fonts styles using helpers such as fontFace or fontList:
fontFace
fontList
{{! somefile.css }} h1 { font-family: {{fontFace 'heading1'}}; } p { font-family: {{fontList 'default'}}; }
Styles can be declared in the theme's theme theme.json, with or without fallbacks:
theme.json
"fonts": { "default": ["Helvetica Neue", "Helvetica", "Open Sans", "Calibri"], "heading1": "Impact" }
And overridden by the user at generate time:
hackmyresume build resume.json ---heading1 "Droid Sans"
The text was updated successfully, but these errors were encountered:
hacksalot
No branches or pull requests
Themes should be able to declare overridable named fonts styles using helpers such as
fontFace
orfontList
:Styles can be declared in the theme's theme
theme.json
, with or without fallbacks:And overridden by the user at generate time:
hackmyresume build resume.json ---heading1 "Droid Sans"
The text was updated successfully, but these errors were encountered: