-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtailwind.config.js
44 lines (44 loc) · 1007 Bytes
/
tailwind.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
"node_modules/flowbite-react/**/*.{js,jsx,ts,tsx}",
],
safelist: [
"bg",
"border",
"text",
{
pattern: /(bg|border|text)-(red|blue|green|yellow|orange|teal|purple)-(300|500)/,
},
],
theme: {
fontFamily: {
sans: ["Poppins", "sans-serif"],
montSerrat: ["Montserrat", "sans-serif"],
},
colors: {
primary: "#FB5012",
primaryClick: "#FF6E39",
primaryActive: "#DD3B00",
sectionBg: "#FFF3EE",
white: "#fff",
cardGray: "#F9F9F9",
imageYellow: "#FFE600",
textGray: "#676767",
clearPurple: "#FF9D9E",
titleBlack: "#2E2E2E",
},
extend: {
spacing: {
73: "18.75rem",
hero: "calc(100vh-60px)",
},
aspectRatio: {
realA4: "1/1.4142",
},
},
},
plugins: [require("flowbite/plugin")],
};