Skip to content

Instantly share code, notes, and snippets.

@mcavaliere
Last active April 25, 2018 15:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mcavaliere/86286334b0ae57e095f173e67cbec513 to your computer and use it in GitHub Desktop.
Save mcavaliere/86286334b0ae57e095f173e67cbec513 to your computer and use it in GitHub Desktop.
React Native Design Systems: Color Constants
import Constants from '../constants';
export default const Colors = {
black: {
default: '#232323',
absolute: '#000000'
},
white: {
default: '#ffffff'
},
blue: {
default: '#004d79',
alt1: '#1d84c4',
alt2: '#0083f9'
},
cyan: {
default: '#7ae2ff'
},
green: {
default: '#5b9675'
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment