Files
freeCodeCamp/tools/ui-components/tailwind.config.js

15 lines
241 B
JavaScript
Raw Normal View History

module.exports = {
purge: ['./src/**/*.html', './src/**/*.js'],
darkMode: false,
theme: {
colors: {
// Configure the color palette here
darkGreen: '#00471b'
}
},
variants: {
extend: {}
},
plugins: []
};