|
- module.exports = {
- purge: ['./pages/**/*.tsx', './components/**/*.tsx'],
- darkMode: 'media', // or 'media' or 'class'
- backgroundColor: theme => ({
- ...theme('colors'),
- 'primary': '#e76143',
- }),
- theme: {
- fontFamily: {
- 'diplay': ['Comic Neue'],
- 'body': ['Comic Neue'],
- 'sans': ['Comic Neue']
- }
- },
- variants: {
- extend: {},
- },
- plugins: [],
- }
|