cryptosignal-sleuth-pro / frontend /tailwind.config.js
Alexo19's picture
Implement:
0ca069d verified
raw
history blame contribute delete
302 Bytes
module.exports = {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
primary: {
500: '#6366f1',
},
secondary: {
500: '#ec4899',
}
}
},
},
darkMode: 'class',
plugins: [],
}