2021-09-11 21:32:23 +01:00
|
|
|
module.exports = {
|
2024-04-29 13:21:31 +01:00
|
|
|
mode: 'jit',
|
2021-09-11 21:32:23 +01:00
|
|
|
purge: ['views/*.pug'],
|
|
|
|
darkMode: false, // or 'media' or 'class'
|
|
|
|
theme: {
|
|
|
|
extend: {
|
|
|
|
fontFamily: {
|
2024-04-29 13:21:31 +01:00
|
|
|
extra: ['"Titling Gothic FB"'],
|
|
|
|
sans: ['Gilroy'],
|
|
|
|
mono: ['"Apercu Mono"'],
|
2021-09-11 21:32:23 +01:00
|
|
|
},
|
|
|
|
colors: {
|
|
|
|
transparent: 'transparent',
|
|
|
|
current: 'currentColor',
|
|
|
|
black: {
|
|
|
|
DEFAULT: '#002234',
|
|
|
|
},
|
|
|
|
pink: {
|
|
|
|
DEFAULT: '#CC7A98',
|
|
|
|
},
|
|
|
|
green: {
|
|
|
|
DEFAULT: '#CDE7B0',
|
2024-04-29 13:21:31 +01:00
|
|
|
},
|
|
|
|
},
|
2021-09-11 21:32:23 +01:00
|
|
|
},
|
|
|
|
},
|
|
|
|
variants: {
|
|
|
|
extend: {},
|
|
|
|
},
|
2024-04-29 13:21:31 +01:00
|
|
|
plugins: [require('tailwind-hamburgers')],
|
|
|
|
};
|