39 lines
816 B
JavaScript
39 lines
816 B
JavaScript
|
module.exports = {
|
||
|
purge: ['./pages/**/*.{js,ts,jsx,tsx}', './components/**/*.{js,ts,jsx,tsx}'],
|
||
|
darkMode: false, // or 'media' or 'class'
|
||
|
theme: {
|
||
|
extend: {
|
||
|
colors: {
|
||
|
gray: {
|
||
|
100: '#EBF1F5',
|
||
|
200: '#D9E3EA',
|
||
|
300: '#C5D2DC',
|
||
|
400: '#9BA9B4',
|
||
|
500: '#707D86',
|
||
|
600: '#55595F',
|
||
|
700: '#33363A',
|
||
|
800: '#25282C',
|
||
|
900: '#151719',
|
||
|
},
|
||
|
blue: {
|
||
|
100: '#b3e5fc',
|
||
|
200: '#81d4fa',
|
||
|
300: '#4fc3f7',
|
||
|
400: '#29b6f6',
|
||
|
500: '#03a9f4',
|
||
|
600: '#039be5',
|
||
|
700: '#0288d1',
|
||
|
800: '#0277bd',
|
||
|
900: '#01579b',
|
||
|
},
|
||
|
}
|
||
|
},
|
||
|
},
|
||
|
variants: {
|
||
|
extend: {},
|
||
|
},
|
||
|
plugins: [
|
||
|
require('@tailwindcss/forms'),
|
||
|
],
|
||
|
}
|