Skip to content

Instantly share code, notes, and snippets.

@shaharkazaz
Created July 29, 2021 09:51
Show Gist options
  • Save shaharkazaz/413bb7f3ec4978e58a996da556fd1dab to your computer and use it in GitHub Desktop.
Save shaharkazaz/413bb7f3ec4978e58a996da556fd1dab to your computer and use it in GitHub Desktop.
const fontSizes = [10, 12, 14 , ...];
const coreStyles = {
fontSize: {
variableName: 'text:valueKey',
properties: [{
prop: 'font-size',
selector: '.text:valueKey'
}],
value: fontSizes.reduce((acc, size) => {
acc[size] = `${size / 16}rem`;
return acc;
}, {}),
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment