vue-playground/tailwind.config.js
2022-05-15 20:28:42 +02:00

20 lines
359 B
JavaScript

module.exports = {
content: [
"./index.html",
"./src/**/*.{vue,js,ts,jsx,tsx}",
'./node_modules/tw-elements/dist/js/**/*.js'
],
theme: {
extend: {
colors: {
gray: {
900: '#202225'
},
blue: {
900: '#19212D'
}
}
},
},
plugins: [require('tw-elements/dist/plugin')],
}