This repository has been archived on 2025-10-03. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
rebuilding-uis/tailwind.config.js
2020-09-09 12:26:47 +01:00

27 lines
422 B
JavaScript

module.exports = {
purge: [
'public/index.html',
'src/**/*.vue'
],
theme: {
colors: {
black: '#222',
gray: {
50: '#f7f7f7'
},
blue: {
500: '#337ab7',
550: '#286090',
600: '#204d74'
},
white: '#fff',
yellow: '#fde546'
},
extend: {},
},
variants: {},
plugins: [],
experimental: {
applyComplexClasses: true
}
}