Skip to content
DocsCookie BannerBanner Customization
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 Project
2
Click "Cookie Banner" settings tab
3
Choose theme, position, colors, and text
4
Preview changes in real-time
5
Save — changes apply instantly to your website

CSS 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;
}
Documentation — CONSETO | CONSETO