The Theme type defines the color palette used across all components in react-native-ios-kit. It ensures visual consistency by providing specific keys for primary colors, backgrounds, text, and status colors. You can use these keys to build your own custom theme or to ensure your application's styling aligns with the kit's components.
export type Theme = {
primaryColor: string,
primaryLightColor: string,
disabledColor: string,
backgroundColor: string,
barColor: string,
dividerColor: string,
textColor: string,
placeholderColor: string,
footnoteColor: string,
footnoteBackgroundColor: string,
positiveColor: string,
};