Portfolio-v3/tailwind.config.js

19 lines
418 B
JavaScript

const colors = require('tailwindcss/colors')
module.exports = {
content: ['./pages/**/*.{js,ts,jsx,tsx}', './components/**/*.{js,ts,jsx,tsx}', './layout/**/*.{js,ts,jsx,tsx}'],
theme: {
colors: {
white: colors.white,
black: colors.black,
gray: colors.zinc,
rose: colors.rose
},
extend: {
fontFamily: {
'sans': ['Space Grotesk']
}
}
},
plugins: []
}