Add tailwind fonts and colours

This commit is contained in:
E
2021-09-10 22:23:58 +01:00
parent 3f1514c2f3
commit e6cc660f5e
4 changed files with 55 additions and 3 deletions

View File

@@ -1,9 +1,28 @@
module.exports = {
mode: "jit",
purge: ['../views/*.pug'],
purge: ['views/*.pug'],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {},
extend: {
fontFamily: {
'extra': ['"Titling Gothic FB"'],
'sans': ['Gilroy'],
'mono': ['"Apercu Mono"'],
},
colors: {
transparent: 'transparent',
current: 'currentColor',
black: {
DEFAULT: '#002234',
},
pink: {
DEFAULT: '#CC7A98',
},
green: {
DEFAULT: '#CDE7B0',
}
}
},
},
variants: {
extend: {},