expo-react-native-toastify
Version:
expo-react-native-toastify allows you to add notifications to your expo react-native app (ios, android, web) with ease.
38 lines • 909 B
JavaScript
export const Colors = {
light: {
text: '#4c4c4c',
back: '#ffffff',
background: '#ffffff',
default: '#3498db',
info: '#3498db',
success: '#07bc0c',
warn: '#f1c40f',
error: '#e74c3c',
progressBar: {
info: '#3498db',
success: '#07bc0c',
warn: '#f1c40f',
error: '#e74c3c',
default: '#3498db'
}
},
dark: {
text: '#ffffff',
back: '#121212',
background: '#1F2937',
default: '#60a5fa',
info: '#60a5fa',
success: '#34d399',
warn: '#fbbf24',
error: '#f87171',
progressBar: {
info: '#60a5fa',
success: '#34d399',
warn: '#fbbf24',
error: '#f87171',
default: '#60a5fa'
}
},
textDefault: '#4c4c4c',
textDark: 'black'
};