module.exports = {
|
|
prefix: 'rg-',
|
|
important: true,
|
|
purge: [
|
|
'public/views/**/*.php',
|
|
],
|
|
theme: {
|
|
colors: {
|
|
transparent: 'transparent',
|
|
current: 'currentColor',
|
|
|
|
black: '#000',
|
|
white: '#fff',
|
|
|
|
red: {
|
|
400: '#ff746e',
|
|
},
|
|
yellow: {
|
|
100: '#faf9f5',
|
|
},
|
|
blue: {
|
|
900: '#0e2734',
|
|
},
|
|
},
|
|
extend: {},
|
|
},
|
|
variants: {},
|
|
plugins: [],
|
|
}
|