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}",
|
2022-12-08 10:02:48 -05:00
|
|
|
"./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-27 08:06:30 -05:00
|
|
|
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
|
|
|
},
|
2023-01-20 05:38:23 -05:00
|
|
|
colors: {
|
|
|
|
"7tv": "#4fc2bc",
|
|
|
|
bttv: "#d50014",
|
2023-01-23 03:36:04 -05:00
|
|
|
twitch: "#9146FF",
|
2023-01-20 05:38:23 -05:00
|
|
|
},
|
2022-12-08 21:40:02 -05:00
|
|
|
},
|
2022-11-23 17:20:36 -05:00
|
|
|
},
|
|
|
|
plugins: [],
|
|
|
|
};
|