Skip to content

Instantly share code, notes, and snippets.

View teddybradford's full-sized avatar

Teddy Bradford teddybradford

View GitHub Profile
// http://spencermortensen.com/articles/typographic-scale/
export const modularScale = (i, props = { ratio: 2, notesPerInterval: 5, fundamental: 12 }) =>
props.fundamental * props.ratio ** (i / props.notesPerInterval);