2024-03-15 14:39:20 +08:00
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
|
|
module.exports = {
|
|
|
|
content: ["./src/**/*.{html,js,ts,jsx,tsx}"],
|
|
|
|
theme: {
|
2024-03-19 14:25:34 +08:00
|
|
|
extend: {},
|
|
|
|
textColor: {
|
|
|
|
'primary': '#0fc87c'
|
|
|
|
}
|
2024-03-15 14:39:20 +08:00
|
|
|
},
|
|
|
|
plugins: [],
|
|
|
|
// v3 版本的 tailwindcss 有些不同
|
|
|
|
corePlugins: {
|
|
|
|
preflight: false
|
|
|
|
}
|
|
|
|
};
|