FreesideWeb/tailwind.config.js

21 lines
340 B
JavaScript
Raw Normal View History

2021-08-18 19:56:22 +01:00
module.exports = {
theme: {
backgroundColor: theme => ({
...theme('colors'),
'primary': '#fe7c3b',
'secondary': '#fcac67',
'danger': '#240d09',
}),
gradientColorStops: theme => ({
...theme('colors'),
'primary': '#fe7c3b',
'secondary': '#ff5f0f',})
}
}