Skip to content

Instantly share code, notes, and snippets.

@VJAI
Last active September 30, 2021 13:22
Show Gist options
  • Save VJAI/f4240f0353bf992d967f52f74844d963 to your computer and use it in GitHub Desktop.
Save VJAI/f4240f0353bf992d967f52f74844d963 to your computer and use it in GitHub Desktop.
Font Size Calculator
const base = 19;
const ratio = 1.618;
const interval = 5;
function size(point) {
const s = base * Math.pow(ratio, point/interval);
return [s, `${(s / base).toFixed(3)} rem`];
}
for (let i = -10; i < 20; i++) {
console.log(size(i));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment