fluffychat/docs/tailwind.config.js
2023-11-11 12:21:38 +01:00

18 lines
248 B
JavaScript

module.exports = {
content: [
'./index.html'
],
darkMode: true,
theme: {
extend: {
colors: {
'primary': '#5625BA',
'secondary': '#41a2bc'
}
},
},
variants: {
extend: {},
},
plugins: [],
}