39 lines
1.0 KiB
JavaScript
39 lines
1.0 KiB
JavaScript
/*
|
|
** TailwindCSS Configuration File
|
|
**
|
|
** Docs: https://tailwindcss.com/docs/configuration
|
|
** Default: https://github.com/tailwindcss/tailwindcss/blob/master/stubs/defaultConfig.stub.js
|
|
*/
|
|
module.exports = {
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
gray: {
|
|
100: '#F8F9FA',
|
|
200: '#EBEBEB',
|
|
300: '#DEE2E6',
|
|
400: '#CED4DA',
|
|
500: '#ADB5BD',
|
|
600: '#888',
|
|
700: '#444',
|
|
800: '#303030',
|
|
900: '#222',
|
|
},
|
|
},
|
|
},
|
|
},
|
|
variants: {},
|
|
plugins: [],
|
|
purge: {
|
|
// Learn more on https://tailwindcss.com/docs/controlling-file-size/#removing-unused-css
|
|
enabled: process.env.NODE_ENV === 'production',
|
|
content: [
|
|
'components/**/*.vue',
|
|
'layouts/**/*.vue',
|
|
'pages/**/*.vue',
|
|
'plugins/**/*.js',
|
|
'nuxt.config.js',
|
|
],
|
|
},
|
|
}
|