-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
51 lines (49 loc) · 1.23 KB
/
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
45
46
47
48
49
50
51
/** @type {import('tailwindcss').Config} */
const { fontFamily } = require("tailwindcss/defaultTheme");
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
fontFamily: {
montserrat: ["var(--font-montserrat)", ...fontFamily.sans],
hind: ["var(--font-hind)", ...fontFamily.sans],
},
colors: {
primary: {
50: "#ecf1ff",
100: "#dde4ff",
200: "#c2ceff",
300: "#9cacff",
400: "#7580ff",
500: "#5152ff",
600: "#4436f5",
700: "#3a2ad8",
800: "#2f25ae",
900: "#2b2689",
950: "#1b1650",
},
backdrop: "#f8f8f8",
},
animation: {
text: "text 5s ease infinite",
},
keyframes: {
text: {
"0%, 100%": {
"background-size": "200% 200%",
"background-position": "left center",
},
"50%": {
"background-size": "200% 200%",
"background-position": "right center",
},
},
},
},
},
plugins: [require("@tailwindcss/line-clamp")],
};