Theming
Quick Start
<VeChainKitProvider
theme={{
modal: {
backgroundColor: isDarkMode ? '#1f1f1e' : '#ffffff',
},
textColor: isDarkMode ? 'rgb(223, 223, 221)' : '#2e2e2e',
overlay: {
backgroundColor: 'rgba(0, 0, 0, 0.6)',
blur: 'blur(3px)',
},
buttons: {
secondaryButton: {
bg: 'rgba(255, 255, 255, 0.1)',
color: '#ffffff',
border: 'none',
},
},
effects: {
glass: {
enabled: true,
intensity: 'low',
},
},
}}
// ... other props
>
{children}
</VeChainKitProvider>Simplified API
Base Colors
Overlay Configuration
Complete Example
Last updated
Was this helpful?