module.exports = {
content: [
"./index.html",
"./src/**/*.{vue,ts,tsx}",
"../components/**/*.{vue,ts,tsx}",
"../index.ts"
],
theme: {
extend: {
colors: {
mosquito: {
ink: '#0B1C2C',
brand: '#0B3A63',
accent: '#16B9A5',
accent2: '#6AA7FF',
surface: '#FFFFFF',
bg: '#F3F6F9',
line: '#E0E6ED'
}
},
boxShadow: {
soft: '0 12px 24px rgba(11, 28, 44, 0.08)',
glow: '0 20px 50px rgba(11, 28, 44, 0.12)'
}
}
},
plugins: []
}