personal-website/tailwind.config.js

20 lines
366 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
fontFamily: {
'hack': ['Hack', 'sans-serif']
},
extend: {
colors: {
'material-gray': '#212121',
'btn-gray': '#575757',
}
},
},
plugins: [],
}