Skip to content

Instantly share code, notes, and snippets.

@wttj-tech
Created March 24, 2022 15:28
Show Gist options
  • Save wttj-tech/b644fe30ebcc03c0fe2e5b734dd28acf to your computer and use it in GitHub Desktop.
Save wttj-tech/b644fe30ebcc03c0fe2e5b734dd28acf to your computer and use it in GitHub Desktop.
How we implemented our open-source design system
/* get all theme entries from core to pass to hint theming file */
export const getHints = theme => {
const { colors, fontSizes, fontWeights } = theme
return {
color: colors.light[500],
fontSize: fontSizes.body4,
fontWeight: fontWeights.regular,
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment