import type { Theme } from '../utils/types'; import configureFonts from './font'; let LightTheme: Theme; LightTheme = { dark: false, colors: { primary: '#FAD000', primaryVariant: '#3700B3', secondary: '#03DAC6', secondaryVariant: '#018786', background: '#FFFFFF', error: '#A81E23', textColor: '#231F20', textColorLight: '#5D5D5D', textColorLabel: '#353535', headerTextColor: '#FFF', shadowColor: '#222', black: '#000', white: '#FFFFFF', lightgrey: '#D7D7D7', backgroundLayout: 'rgba(35, 31, 32, 0.75)', transparent: 'transparent', linkColor: '#0000EE', greyOpac50: 'rgba(53, 53, 53, 0.5)', greyOpac10: 'rgba(53, 53, 53, 0.1)', separatorColor: '#DEDEDE', success: '#1CA11C', failure: '#CB1B0C', primaryButtonColor: '#231F20', secondaryButtonColor: '#FFFFFF', tabBarColor: '#353535', borderColor: '#D9D9D9', neutralGray: '#EEEEEE', neutralGraySeven: '#F3F3F3', primaryYellowShade: '#FDEC99', transactionSuccess: '#9CCE93', transactionFailure: '#D99188', gray2: '#8D8D8D', gray3: '#868686', successTwo: '#EAF5E9', verifyMobileDisable: '#AEAEAE', shimmeringHighlightColor: '#bcbcbc', shimmeringBackgroundColor: '#ccc', }, fonts: configureFonts(), }; export default LightTheme;