1
1
mirror of https://github.com/theoludwig/react-component-form.git synced 2024-07-17 07:30:13 +02:00
react-component-form/example/tailwind.config.js

21 lines
372 B
JavaScript
Raw Normal View History

2022-08-26 20:19:31 +02:00
/** @type {import('tailwindcss').Config} */
2022-10-03 21:23:17 +02:00
const tailwindConfig = {
2022-08-26 20:19:31 +02:00
content: [
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}'
],
darkMode: 'class',
theme: {
extend: {
colors: {
black: '#212121',
success: '#45C85A',
error: '#C84545'
}
}
},
plugins: []
}
2022-10-03 21:23:17 +02:00
module.exports = tailwindConfig