Light
React Native's light mode theme provides a default styling that uses lighter colors and contrasts for a brighter user interface.
import {DefaultTheme as NavigationDefaultTheme} from '@react-navigation/native';
export const DefaultTheme = {
...NavigationDefaultTheme,
colors: {
...NavigationDefaultTheme.colors,
primary: '#1da599',
default: '#ffffff',
light: '#ffffff',
dark: '#111111',
smoke: '#f7f7f7',
input: '#f0f0f0',
listItem: '#f0f0f0',
border: '#CCCCCC',
modal: '#ffffff',
modalBorder: '#f0f0f0',
placeholder: '#999999',
card: '#999999',
white: '#ffffff',
black: '#111111',
},
statusBar: {
backgroundColor: '#ffffff',
barStyle: 'dark-content',
},
};