Custom Theming
Nivel owns the docs layout structure, but the consumer owns palette tokens and brand styling. This keeps the documentation engine reusable without forcing every site into the same visual identity.
Keep local
styles/theme.cssstyles/global.css- Tailwind source declarations
- daisyUI theme names and token values
- logos, favicons, and brand assets
Configure theme names
JavaScript
const docsConfig = {
theme: {
light: 'my-docs-light',
dark: 'my-docs-dark',
defaultPreference: 'dark'
}
// ...
}Read Theme Configuration for the config surface and Brand, Head and Fonts for brand and asset settings.