12 lines
199 B
JavaScript
12 lines
199 B
JavaScript
module.exports = {
|
|
content: ["./src/**/*.{html,js}"],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
'custom-bg': '#070b3b', // Your custom background color
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|