const config: VaultSDKAdapterConfig = {
brands: ['visa', 'mastercard'],
fields: {
cardNumber: {
target: '#card-number',
placeholder: 'Card Number',
ariaLabel: 'Credit Card Number',
iframeTitle: 'Secure Card Number Input'
},
cvv: {
target: '#cvv',
placeholder: 'CVV',
ariaLabel: 'Card Security Code',
iframeTitle: 'Secure CVV Input'
}
},
styles: {
fontSrc: 'https://fonts.example.com/myfont.woff2',
input: {
fontFamily: 'Arial, sans-serif',
fontSize: '16px',
color: '#333',
':focus': {
color: '#0070f3',
backgroundColor: '#e6f7ff'
},
'::placeholder': {
color: '#aaa'
}
}
}
}