Created
March 24, 2022 15:28
-
-
Save wttj-tech/b644fe30ebcc03c0fe2e5b734dd28acf to your computer and use it in GitHub Desktop.
How we implemented our open-source design system
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
/* 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