15 lines
241 B
JavaScript
15 lines
241 B
JavaScript
![]() |
module.exports = {
|
||
|
purge: ['./src/**/*.html', './src/**/*.js'],
|
||
|
darkMode: false,
|
||
|
theme: {
|
||
|
colors: {
|
||
|
// Configure the color palette here
|
||
|
darkGreen: '#00471b'
|
||
|
}
|
||
|
},
|
||
|
variants: {
|
||
|
extend: {}
|
||
|
},
|
||
|
plugins: []
|
||
|
};
|