| 12345678910111213141516171819202122 |
- /** @type {import('tailwindcss').Config} */
- export default {
- content: [
- "./index.html",
- "./src/**/*.{vue,js,ts,jsx,tsx}",
- ],
- theme: {
- extend: {
- colors: {
- // 维度颜色(与 nodeStyle.js 同步)
- 'dim-persona': '#dc2626', // red-600 - 深红
- 'dim-inspiration': '#7c3aed', // violet-600 - 深紫
- 'dim-purpose': '#2563eb', // blue-600 - 深蓝
- 'dim-key': '#0d9488', // teal-600 - 深青绿
- }
- },
- },
- plugins: [require("daisyui")],
- daisyui: {
- themes: ["dark"],
- },
- }
|