/** @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: [], }