24 lines
463 B
JavaScript
24 lines
463 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
"./components/**/*.{js,vue,ts}",
|
|
"./layouts/**/*.vue",
|
|
"./pages/**/*.vue",
|
|
"./plugins/**/*.{js,ts}",
|
|
"./app.vue",
|
|
"./error.vue"
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
primary: '#232F3E',
|
|
secondary: '#FF9900',
|
|
accent: '#0D6EFD',
|
|
},
|
|
backgroundColor: {
|
|
'light-gray': '#F8F9FA',
|
|
}
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|