InvestWeb/tailwind.config.js

19 lines
428 B
JavaScript
Raw Normal View History

2022-11-23 17:20:36 -05:00
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
"./layouts/**/*.{js,ts,jsx,tsx}",
2022-11-23 17:20:36 -05:00
],
theme: {
2022-12-08 21:40:02 -05:00
extend: {
fontFamily: {
roboto: ["Roboto", "sans-serif"],
plusJakarta: ["Plus Jakarta Sans", "sans-serif"],
2022-12-22 11:19:18 -05:00
spaceMono: ["Space Mono", "monospace"],
2022-12-08 21:40:02 -05:00
},
},
2022-11-23 17:20:36 -05:00
},
plugins: [],
};