21 lines
358 B
JavaScript
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: []
|
|
};
|
|
|