手动添加依赖项到您的项目中。

添加 Tailwind CSS

组件使用 Tailwind CSS 进行样式设置。您需要在项目中安装 Tailwind CSS。

按照 Tailwind CSS 安装说明开始

添加依赖项

将以下依赖项添加到您的项目中:

  1. pnpm add tailwindcss-animate class-variance-authority clsx tailwind-merge lucide-react

配置路径别名

tsconfig.json 文件中配置路径别名。

tsconfig.json

  1. {
  2. "compilerOptions": {
  3. "baseUrl": ".",
  4. "paths": {
  5. "@/*": ["./*"]
  6. }
  7. }
  8. }

@ 别名是首选项。如果您愿意,也可以使用其他别名。

配置 tailwind.config.js

这是我的 tailwind.config.js 文件的样子:

tailwind.config.js

  1. /** @type {import('tailwindcss').Config} */
  2. module.exports = {
  3. darkMode: ["class"],
  4. content: ["app/**/*.{ts,tsx}", "components/**/*.{ts,tsx}"],
  5. theme: {
  6. extend: {
  7. colors: {
  8. border: "hsl(var(--border))",
  9. input: "hsl(var(--input))",
  10. ring: "hsl(var(--ring))",
  11. background: "hsl(var(--background))",
  12. foreground: "hsl(var(--foreground))",
  13. primary: {
  14. DEFAULT: "hsl(var(--primary))",
  15. foreground: "hsl(var(--primary-foreground))",
  16. },
  17. secondary: {
  18. DEFAULT: "hsl(var(--secondary))",
  19. foreground: "hsl(var(--secondary-foreground))",
  20. },
  21. destructive: {
  22. DEFAULT: "hsl(var(--destructive))",
  23. foreground: "hsl(var(--destructive-foreground))",
  24. },
  25. muted: {
  26. DEFAULT: "hsl(var(--muted))",
  27. foreground: "hsl(var(--muted-foreground))",
  28. },
  29. accent: {
  30. DEFAULT: "hsl(var(--accent))",
  31. foreground: "hsl(var(--accent-foreground))",
  32. },
  33. popover: {
  34. DEFAULT: "hsl(var(--popover))",
  35. foreground: "hsl(var(--popover-foreground))",
  36. },
  37. card: {
  38. DEFAULT: "hsl(var(--card))",
  39. foreground: "hsl(var(--card-foreground))",
  40. },
  41. },
  42. borderRadius: {
  43. lg: `var(--radius)`,
  44. md: `calc(var(--radius) - 2px)`,
  45. sm: "calc(var(--radius) - 4px)",
  46. },
  47. },
  48. },
  49. plugins: [require("tailwindcss-animate")],
  50. }

配置样式

将以下内容添加到您的 styles/globals.css 文件中。您可以在 主题部分 中了解更多关于使用 CSS 变量进行主题设置的信息。

globals.css

  1. @tailwind base;
  2. @tailwind components;
  3. @tailwind utilities;
  4. @layer base {
  5. :root {
  6. --background: 0 0% 100%;
  7. --foreground: 222.2 47.4% 11.2%;
  8. --muted: 210 40% 96.1%;
  9. --muted-foreground: 215.4 16.3% 46.9%;
  10. --popover: 0 0% 100%;
  11. --popover-foreground: 222.2 47.4% 11.2%;
  12. --border: 214.3 31.8% 91.4%;
  13. --input: 214.3 31.8% 91.4%;
  14. --card: 0 0% 100%;
  15. --card-foreground: 222.2 47.4% 11.2%;
  16. --primary: 222.2 47.4% 11.2%;
  17. --primary-foreground: 210 40% 98%;
  18. --secondary: 210 40% 96.1%;
  19. --secondary-foreground: 222.2 47.4% 11.2%;
  20. --accent: 210 40% 96.1%;
  21. --accent-foreground: 222.2 47.4% 11.2%;
  22. --destructive: 0 100% 50%;
  23. --destructive-foreground: 210 40% 98%;
  24. --ring: 215 20.2% 65.1%;
  25. --radius: 0.5rem;
  26. }
  27. .dark {
  28. --background: 224 71% 4%;
  29. --foreground: 213 31% 91%;
  30. --muted: 223 47% 11%;
  31. --muted-foreground: 215.4 16.3% 56.9%;
  32. --accent: 216 34% 17%;
  33. --accent-foreground: 210 40% 98%;
  34. --popover: 224 71% 4%;
  35. --popover-foreground: 215 20.2% 65.1%;
  36. --border: 216 34% 17%;
  37. --input: 216 34% 17%;
  38. --card: 224 71% 4%;
  39. --card-foreground: 213 31% 91%;
  40. --primary: 210 40% 98%;
  41. --primary-foreground: 222.2 47.4% 1.2%;
  42. --secondary: 222.2 47.4% 11.2%;
  43. --secondary-foreground: 210 40% 98%;
  44. --destructive: 0 63% 31%;
  45. --destructive-foreground: 210 40% 98%;
  46. --ring: 216 34% 17%;
  47. }
  48. }
  49. @layer base {
  50. * {
  51. @apply border-border;
  52. }
  53. body {
  54. @apply font-sans antialiased bg-background text-foreground;
  55. }
  56. }

添加 cn 助手函数

lib/utils.ts

  1. import { clsx, type ClassValue } from "clsx"
  2. import { twMerge } from "tailwind-merge"
  3. export function cn(...inputs: ClassValue[]) {
  4. return twMerge(clsx(inputs))
  5. }

创建 components.json 文件

在项目根目录创建一个 components.json 文件。

components.json

  1. {
  2. "$schema": "https://ui.shadcn.com/schema.json",
  3. "style": "new-york",
  4. "rsc": false,
  5. "tsx": true,
  6. "tailwind": {
  7. "config": "tailwind.config.js",
  8. "css": "src/index.css",
  9. "baseColor": "zinc",
  10. "cssVariables": true,
  11. "prefix": ""
  12. },
  13. "aliases": {
  14. "components": "@/components",
  15. "utils": "@/lib/utils",
  16. "ui": "@/components/ui",
  17. "lib": "@/lib",
  18. "hooks": "@/hooks"
  19. },
  20. "iconLibrary": "lucide"
  21. }

就这样

现在,您可以开始向项目中添加组件。