Skip to content

catppuccin/daisyui

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

18 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

Logo
Catppuccin for daisyUI

Previews

๐ŸŒป Latte
๐Ÿชด Frappรฉ
๐ŸŒบ Macchiato
๐ŸŒฟ Mocha

Usage

Installation

npm pnpm yarn
npm install -D @catppuccin/daisyui pnpm install -D @catppuccin/daisyui yarn install -D @catppuccin/daisyui

Configuration

// tailwind.config.js
import catppuccin from '@catppuccin/daisyui'

module.exports = {
  content: ['./src/**/*.{js,ts}', 'index.html'],
  plugins: [require('daisyui')],
  daisyui: {
    themes: [
      'light',
      // You can simply select a catppuccin flavor with sane default colors
      catppuccin('latte'),
      // Or you can optionally specify accent colors
      catppuccin('frappe', 'pink'),
      // Or you can optionally customize more semantic colors
      catppuccin('macchiato', { primary: 'maroon' }),
      // Values not explicitly defined will use default values
      catppuccin("mocha", { primary: 'sky', secondary: 'rosewater' }),
    ],
  },
};

Available Catppuccin Flavors

  • Latte, Frappe, Macchiato, Mocha

Customizable Semantic Colors

  • Optional fields: primary, secondary, accent, neutral, info

Note: We do not recommend changing any colors other than the primary and accent, although we provide a way to do so

Available Catppuccin Color Values

  • Accent Colors: rosewater, flamingo, pink, mauve, red, maroon, peach, yellow, green, teal, sky, sapphire, blue, lavender
    • Can be assigned to primary, secondary, accent and info semantic color values
  • Monochromatic Colors: text, subtext1, subtext0, overlay2, overlay1, overlay0, surface2, surface1, surface0, base, mantle, crust
    • Can be assigned to secondary and neutral semantic colors values

Using

<div class="grid grid-cols-2 gap-2 md:grid-cols-4 lg:grid-cols-8">
  <button class="btn">Default</button>
  <button class="btn btn-primary">Primary</button>
  <button class="btn btn-secondary">Secondary</button>
  <button class="btn btn-accent">Accent</button>
  <button class="btn btn-info">Info</button>
  <button class="btn btn-success">Success</button>
  <button class="btn btn-warning">Warning</button>
  <button class="btn btn-error">Error</button>
</div>

You can find the example in the example floder.

๐Ÿ’ Thanks to

Copyright ยฉ 2021-present Catppuccin Org