InvestWeb/tailwind.config.js

20 lines
488 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"],
robotoMono: ["Roboto Mono", "monospace"],
2022-12-31 05:22:27 -05:00
minecraft: ["Minecraft", "Roboto", "sans-serif"],
2022-12-08 21:40:02 -05:00
},
},
2022-11-23 17:20:36 -05:00
},
plugins: [],
};