UX Theming
The Lucra SDK theme can be overridden to make the sdk flows feel more inline with your core app design.
LucraSDK.init({
authenticationClientId: '<YOUR CLIENT ID>',
environment: <LucraSDK.ENVIRONMENT>,
theme: {
primary: '#0935F',
secondary: '#5E5BD0',
tertiary: '#9C99FC',
onPrimary: '#001448',
onSecondary: '#FFFFFF',
onTertiary: '#FFFFFF',
fontFamily:
Platform.OS === 'ios'
? 'Inter'
: {
normal: 'Inter-Regular',
bold: 'Inter-Bold',
semibold: 'Inter-SemiBold',
medium: 'Inter-Medium',
},
},
});Last updated