Cookie Banner
Banner Customization
Banner Customization
Customize the appearance and behavior of your consent banner through the dashboard or via configuration options.
Theme Options
javascript
Conseto.init({
clientId: 'YOUR_CLIENT_ID',
theme: 'dark', // 'light' or 'dark'
position: 'bottom', // 'bottom', 'top', 'center'
brandName: 'My Company',
brandColor: '#c70182', // Accent color for buttons
});Dashboard Customization
The easiest way to customize is through the Conseto dashboard:
1
Go to Dashboard → Settings → Projects → Your Project2
Click "Cookie Banner" settings tab3
Choose theme, position, colors, and text4
Preview changes in real-time5
Save — changes apply instantly to your websiteCSS Override
For advanced customization, override banner CSS variables:
css
:root {
--conseto-banner-bg: #1a1a2e;
--conseto-banner-text: #ffffff;
--conseto-banner-accent: #c70182;
--conseto-banner-radius: 16px;
--conseto-banner-font: 'Inter', sans-serif;
}