mirror of
https://github.com/documenso/documenso.git
synced 2025-11-13 08:13:56 +10:00
33 lines
726 B
JavaScript
33 lines
726 B
JavaScript
const defaultTheme = require("tailwindcss/defaultTheme");
|
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
const colors = require("tailwindcss/colors");
|
|
|
|
module.exports = {
|
|
content: [
|
|
"./pages/**/*.{js,ts,jsx,tsx}",
|
|
"./components/**/*.{js,ts,jsx,tsx}",
|
|
"../../packages/ui/**/*.{js,ts,jsx,tsx}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
monteserrat: ["Monteserrat", "serif"],
|
|
qwigley: ["Qwigley", "serif"],
|
|
},
|
|
colors: {
|
|
neon: "#37f095",
|
|
"neon-dark": "#2CC077",
|
|
brown: "#353434",
|
|
},
|
|
borderRadius: {
|
|
"4xl": "2rem",
|
|
},
|
|
maxWidth: {
|
|
"2xl": "40rem",
|
|
},
|
|
plugins: [require("@tailwindcss/forms")],
|
|
},
|
|
},
|
|
};
|