mirror of
https://github.com/documenso/documenso.git
synced 2025-11-13 00:03:33 +10:00
app shell
This commit is contained in:
27
apps/web/tailwind.config.js
Normal file
27
apps/web/tailwind.config.js
Normal file
@ -0,0 +1,27 @@
|
||||
// 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",
|
||||
},
|
||||
},
|
||||
},
|
||||
};
|
||||
Reference in New Issue
Block a user