vue-tailwind-myna/tailwind.config.js

19 lines
404 B
JavaScript
Raw Normal View History

2024-11-20 15:23:32 +07:00
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
theme: {
2024-11-20 19:48:30 +07:00
extend: {
colors: {
primary: '#9D59A8',
secondary: '#B59BBA',
background: '#FFFCF8',
customGray: '#404040',
},
boxShadow: {
button: '0 12px 24px 0 rgba(0, 0, 0, 0.25)',
},
},
2024-11-20 15:23:32 +07:00
},
plugins: [],
}