/** @type {import('tailwindcss').Config} */
export default {
content: [
"./resources/**/*.blade.php",
"./resources/**/*.js",
"./resources/**/*.vue",
],
theme: {
extend: {
colors:{
'primary':'#216A97',
'secondary':'#4D92AC',
'off-white':'#F7F7F7',
}
},
},
plugins: [
require('daisyui'),
],
}