hookehuyr

style(tailwind.config.js): 添加自定义颜色配置以增强主题一致性

```

这个提交消息简洁地描述了在 `tailwind.config.js` 文件中添加了自定义颜色配置,目的是为了增强主题的一致性。使用了 `style` 类型,因为这是一个不影响功能但提升代码可读性和维护性的更改。
......@@ -5,7 +5,16 @@ export default {
"./src/**/*.{vue,js,ts,jsx,tsx}",
],
theme: {
extend: {},
extend: {
colors: {
primary: '#4caf50',
secondary: '#2196f3',
'background-start': '#f0f9ef',
'background-end': '#e6f4ff',
'text-base': '#333333',
'text-light': '#6e6e6e'
}
},
},
plugins: [],
}
......