Created
October 27, 2022 01:02
-
-
Save orodrigogo/ae07dfcffb66b67247e26e0189eee051 to your computer and use it in GitHub Desktop.
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
import { extendTheme } from 'native-base'; | |
export const THEME = extendTheme({ | |
colors: { | |
gray: { | |
950: '#09090A', | |
900: '#121214', | |
800: '#202024', | |
600: '#323238', | |
300: '#8D8D99', | |
200: '#C4C4CC', | |
}, | |
green: { | |
500: '#047C3F' | |
}, | |
yellow: { | |
500: '#F7DD43', | |
600: '#BBA317', | |
}, | |
red: { | |
500: '#DB4437', | |
}, | |
white: '#FFFFFF' | |
}, | |
fonts: { | |
heading: 'Roboto_700Bold', | |
body: 'Roboto_400Regular', | |
medium: 'Roboto_500Medium' | |
}, | |
fontSizes: { | |
xs: 12, | |
sm: 14, | |
md: 16, | |
lg: 20, | |
xl: 24, | |
}, | |
sizes: { | |
14: 56 | |
} | |
}); |
vlw!
Presente!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
cool