dopenative
Version:
A utility-first React Native Framework for Web, iOS and Android, compatible with Expo
35 lines (33 loc) • 838 B
JavaScript
const DNDefaultTheme = {
colors: {
light: {
primaryBackground: '#ffffff',
secondaryBackground: '#ffffff',
primaryForeground: '#4395f8',
secondaryForeground: '#fa2019',
foregroundContrast: 'white',
primaryText: '#000000',
secondaryText: '#7e7e7e',
grey0: '#eaeaea',
grey3: '#e6e6f2',
grey6: '#d6d6d6',
grey9: '#939393',
red: '#ea0606',
},
dark: {
primaryBackground: '#000000',
secondaryBackground: '#000000',
primaryForeground: '#4395f8',
secondaryForeground: '#fa2019',
foregroundContrast: 'white',
primaryText: 'white',
secondaryText: '#7e7e7e',
grey0: '#eaeaea',
grey3: '#e6e6f2',
grey6: '#d6d6d6',
grey9: '#939393',
red: '#ea0606',
},
},
}
export default DNDefaultTheme