20 lines
402 B
JavaScript
20 lines
402 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
darkMode: 'selector',
|
|
content: [
|
|
"./resources/**/*.blade.php",
|
|
"./resources/**/*.js",
|
|
"./resources/**/*.vue",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
'yellow-pfadi': '#ffdd00',
|
|
},
|
|
},
|
|
},
|
|
plugins: [
|
|
require('@tailwindcss/forms'),
|
|
],
|
|
}
|