feat(tools): setup TailwindCSS in ui-components (#42153)

This commit is contained in:
Huyen Nguyen
2021-05-17 14:13:27 +07:00
committed by GitHub
parent c666e83d6f
commit ed094523e4
7 changed files with 705 additions and 23 deletions

View File

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