tailwind.config.js
413 Bytes
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{vue,js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
primary: '#4caf50',
secondary: '#2196f3',
'background-start': '#f0f9ef',
'background-end': '#e6f4ff',
'text-base': '#333333',
'text-light': '#6e6e6e'
}
},
},
plugins: [],
}