Skip to main content

Colors & Theming

Change colors to match your brand and implement dark mode.

Inline Styles Variant

Color Palette Guides

Component files have color palette documentation in their headers:
Format: Light Color → Dark Color

Changing Colors

  1. Find the hex code in your editor’s search
  2. Replace with your brand color

Dark Mode (Inline Styles)

Use the theme prop on comment components:
Components check the theme and apply colors conditionally:

Tailwind CSS Variant

Changing Colors

Option 1: Change classes directly
Option 2: Extend Tailwind config
Then use bg-primary, text-primary, etc.

Dark Mode (Tailwind)

Components use dark: prefix for dark mode:
Setup:
  1. Configure Tailwind for class-based dark mode:
  1. Add dark class to parent element:
All components automatically switch to dark colors.

Common Customizations

Change Primary Brand Color

Inline Styles — find & replace across the component directory:
Tailwind:

Customize Dark Mode Colors


Next Steps

Layout & Structure

Modify component layout

Styling Variants

Inline styles vs Tailwind

Adding Features

Add custom functionality

Advanced

Advanced customization techniques