wrbapp/frontend/tailwind.config.js

19 lines
302 B
JavaScript
Raw Permalink Normal View History

2022-09-15 19:15:07 +02:00
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [],
theme: {
extend: {
colors: {
2022-09-16 21:11:44 +02:00
primary: '#eb6330',
neutral: {
850: '#1F1F1F',
250: '#DDDDDD'
}
2022-09-15 19:15:07 +02:00
}
},
},
2022-09-19 17:10:22 +02:00
plugins: [
require('@tailwindcss/forms'),
],
2022-09-15 19:15:07 +02:00
}