personal-website/tailwind.config.js

21 lines
366 B
JavaScript
Raw Normal View History

2022-06-11 12:43:36 -04:00
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
fontFamily: {
'hack': ['Hack', 'sans-serif']
},
2022-06-11 16:07:16 -04:00
extend: {
colors: {
'material-gray': '#212121',
2022-10-16 21:35:52 -04:00
'btn-gray': '#575757',
2022-10-03 18:31:14 -04:00
}
2022-06-11 16:07:16 -04:00
},
2022-06-11 12:43:36 -04:00
},
plugins: [],
}