tailwind-shadcn-catppuccin-theme
v1.0.1
Published
A Tailwindcss plugin to theme shadcn components using catppuccin palette
Downloads
5
Maintainers
Readme
Tailwind Shadcn Catppuccin Theme
A simple configuration plugin, that enables the theme for Tailwind CSS with Shadcn inspired by Catppuccin color scheme.
Installation
You can install the Tailwind Shadcn Catppuccin Theme using one of the following package managers:
Npm
node install tailwind-shadcn-catppuccin-theme
Yarn
yarn install tailwind-shadcn-catppuccin-theme
Bun
bun install tailwind-shadcn-catppuccin-theme
Tailwind Config
On your project, navigate to your tailwindcss configuration file tailwind.config.(js/ts)
and add the plugin to it:"
const config = {
...
plugins: [
...
'tailwind-shadcn-catppuccin-theme',
...
]
...
}