wordbank/frontEnd/tailwind.config.cjs
2025-12-03 15:22:54 +03:30

21 lines
358 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./index.html',
'./src/**/*.{vue,js,ts,jsx,tsx}'
],
theme: {
extend: {
colors: {
primary: '#4F46E5',
accent: '#22C55E',
background: '#F9FAFB',
navbar_bg: '#06b6d4',
darkbg: '#1F2937'
}
}
},
plugins: []
};