Files
project-minnesota/tailwind.config.js

21 lines
474 B
JavaScript
Raw Normal View History

2024-05-15 12:28:03 +02:00
/** @type {import('tailwindcss').Config} */
export default {
2024-06-21 19:27:40 +02:00
darkMode: ['selector', '[data-dark="true"]'],
2024-05-15 12:28:03 +02:00
content: [
"./resources/**/*.blade.php",
"./resources/**/*.js",
"./resources/**/*.vue",
],
theme: {
extend: {
colors: {
'yellow-pfadi': '#ffdd00',
2024-06-21 19:27:40 +02:00
'yellow-pfadi-dark': '#f2d40d',
2024-05-15 12:28:03 +02:00
},
},
},
plugins: [
require('@tailwindcss/forms'),
],
}