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: {
|
|
|
|
|
// sans: ['Monteserrat', 'sans-serif'],
|
|
|
|
|
monteserrat: ["Monteserrat", "sans-serif"],
|
|
|
|
|
},
|
|
|
|
|
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
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
};
|