-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
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
Update fonts variable name #41
Comments
why do you want a different font-family for body and headers? |
I think variable names, directly related to properties like font-family, should have the same format: |
But you can have more than one font-family, so |
Do you plan for each element to have a different typeface? |
Not all the typefaces, but for some group of typefaces the answer is "yes". For example:
This doesn't mean that each of these will have different fonts (the same value can be used for each of these). Although we can do it this way to give the user more customization options. Implementation example: $font-base: system-ui, sans-serif;
$font-heading: $font-base;
$font-buttons: $font-base;
$font-code: "Fira Code", $font-base;
$font-content: $font-base; |
ok, that sounds pretty good for organizing everything |
If you like you can work on it |
Glad to contribute to the project! |
Check our CONTRIBUTING.md and send the PR to the |
Originally posted by @adonyssantos in #40 (comment)
The text was updated successfully, but these errors were encountered: