Portfolio-v3/tailwind.config.js
Robert S 2a3e233159
Move layout file to layout folder (correctly this time)
Last time I forgot to change the tailwind config, whoops. I also edited my about me page.
2021-12-28 14:51:32 +01:00

24 lines
509 B
JavaScript

const colors = require('tailwindcss/colors')
module.exports = {
mode: 'jit',
purge: ['./pages/**/*.{js,ts,jsx,tsx}', './components/**/*.{js,ts,jsx,tsx}', './layout/**/*.{js,ts,jsx,tsx}'],
darkMode: false, // or 'media' or 'class'
theme: {
colors: {
white: colors.white,
black: colors.black,
gray: colors.gray,
rose: colors.rose
},
extend: {
fontFamily: {
'sans': ['Space Grotesk']
}
}
},
variants: {
extend: {}
},
plugins: []
}