mirror of
https://github.com/Alee14/personal-website.git
synced 2025-01-23 03:11:48 -05:00
20 lines
366 B
JavaScript
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: [],
|
|
}
|