This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// The basis of calculations, and your root html font size. | |
$base-font-size: 16px | |
// Change this to your type scale modifier. | |
// https://type-scale.com/ | |
$type-scale: 1.25 | |
// The desired unit supports "rem", "em", and "%". | |
$desired-unit: 'rem' | |
// Generate a type scale value based on the number of steps if this is ascending or descending. | |
// It is recommended to compile with the "--precision 3" flag to avoid long decimals. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// The basis of calculations, and your root html font size. | |
$base-font-size: 16px; | |
// Change this to your type scale modifier. | |
// https://type-scale.com/ | |
$type-scale: 1.25; | |
// The desired unit supports "rem", "em", and "%". | |
$desired-unit: 'rem'; | |
// Generate a type scale value based on the number of steps if this is ascending or descending. | |
// It is recommended to compile with the "--precision 3" flag to avoid long decimals. |