2022-12-06 17:49:38 +00:00
|
|
|
const defaultTheme = require("tailwindcss/defaultTheme");
|
2022-12-06 13:51:03 +00:00
|
|
|
|
|
|
|
|
/** @type {import('tailwindcss').Config} */
|
2022-12-06 17:49:38 +00:00
|
|
|
const colors = require("tailwindcss/colors");
|
|
|
|
|
|
2022-12-06 13:51:03 +00:00
|
|
|
module.exports = {
|
|
|
|
|
content: [
|
|
|
|
|
"./pages/**/*.{js,ts,jsx,tsx}",
|
|
|
|
|
"./components/**/*.{js,ts,jsx,tsx}",
|
2023-02-02 18:14:21 +00:00
|
|
|
"../../packages/ui/**/*.{js,ts,jsx,tsx}",
|
2022-12-06 13:51:03 +00:00
|
|
|
],
|
|
|
|
|
theme: {
|
|
|
|
|
extend: {
|
|
|
|
|
fontFamily: {
|
2023-02-17 17:51:55 +00:00
|
|
|
monteserrat: ["Monteserrat", "serif"],
|
2023-02-17 18:08:23 +00:00
|
|
|
qwigley: ["Qwigley", "serif"],
|
2022-12-06 13:51:03 +00:00
|
|
|
},
|
|
|
|
|
colors: {
|
|
|
|
|
neon: "#37f095",
|
2022-12-06 18:16:34 +00:00
|
|
|
"neon-dark": "#2CC077",
|
2022-12-06 13:51:03 +00:00
|
|
|
brown: "#353434",
|
|
|
|
|
},
|
|
|
|
|
borderRadius: {
|
|
|
|
|
"4xl": "2rem",
|
|
|
|
|
},
|
|
|
|
|
maxWidth: {
|
|
|
|
|
"2xl": "40rem",
|
|
|
|
|
},
|
2022-12-06 17:49:38 +00:00
|
|
|
plugins: [require("@tailwindcss/forms")],
|
2022-12-06 13:51:03 +00:00
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
};
|