import {StyleSheet} from 'react-native'; const Colors = StyleSheet.create({ primary10: { color: '#1A2331', }, primary20: { color: '#222E41', }, primary30: { color: '#2B3A51', }, primary40: { color: '#556174', }, primary50: { color: '#808997', }, primary60: { color: '#AAB0B9', }, primary70: { color: '#D5D8DC', }, secondary10: { color: '#154B5A', }, secondary20: { color: '#1C6478', }, secondary30: { color: '#237D96', }, secondary40: { color: '#4F97AB', }, secondary50: { color: '#7BB1C0', }, secondary60: { color: '#A7CBD5', }, secondary70: { color: '#D3E5EA', }, tertiary10: { color: '#897A27', }, tertiary20: { color: '#B7A334', }, tertiary30: { color: '#E5CC41', }, tertiary40: { color: '#EAD667', }, tertiary50: { color: '#EFE08D', }, tertiary60: { color: '#EFE08D', }, tertiary70: { color: '#EFE08D', }, indicatorRed: { color: '#DA1E28', }, indicatorOrange: { color: '#FF832C', }, indicatorGreen: { color: '#24A147', }, neutral0: { color: '#000000', }, neutral10: { color: '#1C1B1C', }, neutral20: { color: '#313030', }, neutral30: { color: '#484646', }, neutral40: { color: '#605E5E', }, neutral50: { color: '#797676', }, neutral60: { color: '#939090', }, neutral70: { color: '#ADAAAA', }, neutral80: { color: '#C9C6C5', }, neutral90: { color: '#E5E1E1', }, neutral95: { color: '#F4F0EF', }, neutral99: { color: '#FFFBFF', }, neutral100: { color: '#FFFFFF', }, }); export default Colors;