Instruction file imported from martinfrommel/dose-bot (
.github/instructions/daisyui.instructions.md). Copyright stays with the author.
daisyUI 4
daisyUI 4 is a CSS library for Tailwind CSS 3 daisyUI 4 provides class names for common UI components
daisyUI 5 install notes
- daisyUI 4 requires Tailwind CSS 3
tailwind.config.jsfile is deprecated in Tailwind CSS v4. do not usetailwind.config.js. Tailwind CSS v4 only needs@import "tailwindcss";in the CSS file if it's a node dependency.- daisyUI 5 can be installed using
npm i -D daisyui@latestand then adding@plugin "daisyui";to the CSS file - daisyUI is suggested to be installed as a dependency but if you really want to use it from CDN, you can use Tailwind CSS and daisyUI CDN files:
<link href="https://cdn.jsdelivr.net/npm/daisyui@5" rel="stylesheet" type="text/css" />
<script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4"></script>
- A CSS file with Tailwind CSS and daisyUI looks like this (if it's a node dependency)
@import "tailwindcss";
@plugin "daisyui";
daisyUI 5 usage rules
- We can give styles to a HTML element by adding daisyUI class names to it. By adding a component class name, part class names (if there's any available for that component), and modifier class names (if there's any available for that component)
- Components can be customized using Tailwind CSS utility classes if the customization is not possible using the existing daisyUI classes. For example
btn px-10sets a custom horizontal padding to abtn - If customization of daisyUI styles using Tailwind CSS utility classes didn't work because of CSS specificity issues, you can use the
!at the end of the Tailwind CSS utility class to override the existing styles. For examplebtn bg-red-500!sets a custom background color to abtnforcefully. This is a last resort solution and should be used sparingly - If a specific component or something similar to it doesn't exist in daisyUI, you can create your own component using Tailwind CSS utility
- when using Tailwind CSS
flexandgridfor layout, it should be responsive using Tailwind CSS responsive utility prefixes. - Only allowed class names are existing daisyUI class names or Tailwind CSS utility classes.
- Ideally, you won't need to write any custom CSS. Using daisyUI class names or Tailwind CSS utility classes is preferred.
- suggested - if you need placeholder images, use https://picsum.photos/200/300 with the size you want
- suggested - when designing , don't add a custom font unless it's necessary
- don't add
bg-base-100 text-base-contentto body unless it's necessary - For design decisions, use Refactoring UI book best practices
daisyUI 5 class names are one of the following categories. These type names are only for reference and are not used in the actual code
component: the required component classpart: a child part of a componentstyle: sets a specific style to component or partbehavior: changes the behavior of component or partcolor: sets a specific color to component or partsize: sets a specific size to component or partplacement: sets a specific placement to component or partdirection: sets a specific direction to component or partmodifier: modifies the component or part in a specific wayvariant: prefixes for utility classes that conditionally apply styles. syntax isvariant:utility-class
Config
daisyUI 4 config docs: https://v4.daisyui.com/docs/config