-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
31 lines (31 loc) · 985 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
purple9c: "#9C7EFB",
green1d: "#1dc071",
blue57: "#5773ff",
grayc4: "#c4c1ea",
},
fontFamily: {
montserrat: ["Montserrat", "sans-serif"],
},
screens: {
max2sm: { max: "320.98px" },
maxsm: { max: "768.98px" },
},
backgroundImage: {
linearGreen: "linear-gradient(to right bottom, rgb(29, 192, 113), rgb(164, 217, 108))",
linearOrangee: "linear-gradient(to right top,#fc6c8f,#ffb86c)",
linearPurple: "linear-gradient(to right top,#6a5af9,#d66efd)",
linearPurple2: "linear-gradient(270deg,#c042ff,#8a3cff)",
linearCard: "linear-gradient(90deg,#1c093c,#280f4c)",
},
},
},
plugins: [require("@tailwindcss/line-clamp"), require("@tailwindcss/typography")],
}