Created
September 20, 2022 21:34
-
-
Save orodrigogo/0910c9d77554d96307f1d96e4ff2f064 to your computer and use it in GitHub Desktop.
Design Tokens do App Ignite Gym
This file contains hidden or 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
{ | |
colors: { | |
green: { | |
700: '#00875F', | |
500: '#00B37E', | |
}, | |
gray: { | |
700: '#121214', | |
600: '#202024', | |
500: '#29292E', | |
400: '#323238', | |
300: '#7C7C8A', | |
200: '#C4C4CC', | |
100: '#E1E1E6' | |
}, | |
white: '#FFFFFF', | |
red: { | |
500: '#F75A68' | |
} | |
}, | |
fonts: { | |
heading: 'Roboto_700Bold', | |
body: 'Roboto_400Regular', | |
}, | |
fontSizes: { | |
xs: 12, | |
sm: 14, | |
md: 16, | |
lg: 18, | |
xl: 20, | |
}, | |
sizes: { | |
14: 56, | |
33: 148 | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment