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