Files
WeChatDataAnalysis/frontend/tailwind.config.js
2025-07-25 20:21:26 +08:00

23 lines
430 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: [
"./components/**/*.{js,vue,ts}",
"./layouts/**/*.vue",
"./pages/**/*.vue",
"./plugins/**/*.{js,ts}",
"./app.vue",
"./error.vue",
"./nuxt.config.{js,ts}",
],
theme: {
extend: {
colors: {
wechat: {
green: '#07c160',
'green-hover': '#06a050',
}
}
},
},
plugins: [],
}