1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
const defaultTheme = require("tailwindcss/defaultTheme");
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./app/**/*.{js,ts,jsx,tsx}", "./pages/**/*.{js,ts,jsx,tsx}", "./components/**/*.{js,ts,jsx,tsx}"],
theme: {
fontFamily: {
sans: ["var(--font-inter)", ...defaultTheme.fontFamily.sans],
},
extend: {
dropShadow: {
cta: ["0 10px 15px rgba(219, 227, 248, 0.2)"],
blue: ["0 10px 15px rgba(59, 130, 246, 0.2)"],
},
},
},
plugins: [require("@tailwindcss/forms")],
};
|