Customization
Learn how to customize Cerberus to suit your needs.
Cerberus is a highly customizable library that allows you to define your own rules and configurations. This page will guide you through the process of customizing Cerberus to suit your needs.
Which Option Should I Choose?
- Use global config when:
- Create your own design system
- You need low-level control over your settings
- Use component level when:
- Create one-off component style changes
- Build your own custom components
Option 1: Global Configuration
This is the most flexible way to customize Cerberus. You can define your own design system and pass it to Cerberus via PandaCSS.
Extending the PandaCSS configuration
You can extend the PandaCSS configuration by adding your own custom properties.
1import {2 createCerberusConfig,3 createCerberusPreset,4} from '@cerberus/panda-preset'5
6export default createCerberusConfig({7 clean: true,8 presets: [createCerberusPreset()],9
10 include: ['./mdx-components.tsx', './app/**/*.{ts,tsx}'],11 exclude: [],12})
Extending the Cerberus Preset
You can add global customizations by extending the Cerberus preset.
1import {2 createCerberusConfig,3 createCerberusPreset,4} from '@cerberus/panda-preset'5import { customButtonRecipe } from './system/recipes/button'6
7export default createCerberusConfig({8 clean: true,9 presets: [createCerberusPreset({10 sansFont: 'Poppins',11 monoFont: 'Recursive',12 })],13
14 include: ['./mdx-components.tsx', './app/**/*.{ts,tsx}'],15 exclude: [],16})
Option 2: Component-Specific Configuration
This is the easiest way to customize Cerberus. You simply just add custom styles to a component in Cerberus.
1import { Button, type ButtonProps } from '@cerberus/react'2import { css } from 'styled-system'3
4export function CustomButton(props: ButtonProps) {5 return (6 <Button7 {...props}8 className={css({9 backgroundColor: 'red',10 color: 'white',11 borderRadius: '8px',12 })}13 />14 )15}
Customizing Icons
Some components in Cerberus use icons. You can customize these icons by providing your own icon components.
In your entry file, call defineIcons
with an object that maps icon names to icon components.
The following code replaces all instances of the invalid
icon with a custom Lucide icon.
1import { defineIcons } from '@cerberus/react'2import { cx } from 'styled-system/css'3import { Poppins, Recursive } from 'next/font/google'4import { type PropsWithChildren } from 'react'5import { CircleAlert } from 'lucide-react';6
7import './globals.css'8
9const poppins = Poppins({10 display: 'swap',11 subsets: ['latin'],12 weight: ['400', '600', '700'],13 variable: '--font-poppins',14})15const recursive = Recursive({16 display: 'swap',17 subsets: ['latin'],18 weight: ['400'],19 variable: '--font-recursive',20})21
22defineIcons({23 invalid: CircleAlert,24})25
26interface RootProps {}27
28export default async function RootLayout(props: PropsWithChildren<RootProps>) {29 return (30 <html31 className={cx(poppins.variable, recursive.variable)}32 lang="en"33 data-panda-theme="cerberus"34 data-color-mode="light"35 >36 <body>37 {props.children}38 </body>39 </html>40 )41}
API
The defineIcons
function takes an object that maps icon names to icon components.
1export type IconType = CarbonIconType | ElementType2
3export interface DefinedIcons<T extends IconType = IconType> {4 accordionIndicator: T5 avatar: T6 calendar: T7 calendarPrev: T8 calendarNext: T9 checkbox?: T10 close: T11 confirmModal: T12 delete: T13 promptModal: T14 waitingFileUploader: T15 fileUploader?: T16 indeterminate?: T17 infoNotification: T18 successNotification: T19 warningNotification: T20 dangerNotification: T21 invalid: T22 invalidAlt: T23 redo: T24 selectArrow: T25 selectChecked: T26 toggleChecked: T27}
On this page