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