Skip to content

Instantly share code, notes, and snippets.

@orodrigogo
Created September 29, 2022 11:12
Show Gist options
  • Save orodrigogo/b2ef6f3edb0bfc8123f7e2584576caf2 to your computer and use it in GitHub Desktop.
Save orodrigogo/b2ef6f3edb0bfc8123f7e2584576caf2 to your computer and use it in GitHub Desktop.
import { extendTheme } from 'native-base';
export const THEME = extendTheme({
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'
}
},
fontSizes: {
xs: 12,
sm: 14,
md: 16,
lg: 18,
xl: 20,
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment