mirror of
https://github.com/theoludwig/react-component-form.git
synced 2024-07-17 07:30:13 +02:00
21 lines
372 B
JavaScript
21 lines
372 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
const tailwindConfig = {
|
|
content: [
|
|
'./pages/**/*.{js,ts,jsx,tsx}',
|
|
'./components/**/*.{js,ts,jsx,tsx}'
|
|
],
|
|
darkMode: 'class',
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
black: '#212121',
|
|
success: '#45C85A',
|
|
error: '#C84545'
|
|
}
|
|
}
|
|
},
|
|
plugins: []
|
|
}
|
|
|
|
module.exports = tailwindConfig
|