Themes

Add colors. Make it yours.

Pick a theme from the shadcn-vue website.

Copy the code and put them into assets/css/tailwind.css by replacing the @layer base part.

assets/css/tailwind.css
@tailwind base;
@tailwind components;
@tailwind utilities;

@layer base {
  :root {
    <xxx>
  }

  .dark {
    <xxx>
  }
}

@layer base {
  * {
    @apply border-border;
  }

  body {
    @apply bg-background text-foreground;
  }
}