tailwind.config.js 566 B

12345678910111213141516171819202122
  1. /** @type {import('tailwindcss').Config} */
  2. export default {
  3. content: [
  4. "./index.html",
  5. "./src/**/*.{vue,js,ts,jsx,tsx}",
  6. ],
  7. theme: {
  8. extend: {
  9. colors: {
  10. // 维度颜色(与 nodeStyle.js 同步)
  11. 'dim-persona': '#dc2626', // red-600 - 深红
  12. 'dim-inspiration': '#7c3aed', // violet-600 - 深紫
  13. 'dim-purpose': '#2563eb', // blue-600 - 深蓝
  14. 'dim-key': '#0d9488', // teal-600 - 深青绿
  15. }
  16. },
  17. },
  18. plugins: [require("daisyui")],
  19. daisyui: {
  20. themes: ["dark"],
  21. },
  22. }