-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
51 lines (48 loc) · 1.33 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} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
animation: {
buttonheartbeat: "buttonheartbeat 2s infinite ease-in-out",
},
colors: {
bgPrimary: "#eff1f5",
bgSecondary: "#ccd0da",
darkBgPrimary: "#181825",
darkBgSecondary: "#313244",
primary: "#25d1b5",
textPrimary: "#1b123d",
textSecondary: "#353750",
darkTextPrimary: "#cdd6f4",
darkTextSecondary: "#bac2de",
},
fontFamily: {
Poppins: ["Poppins", "sans-serif"],
},
screens: {
sm: { min: "320px", max: "649px" },
md: { min: "650px", max: "768px" },
lg: { min: "769px", max: "1024px" },
xl: { min: "1025px", max: "1600px" },
},
keyframes: {
buttonheartbeat: {
"0%": {
"box-shadow": '0 0 0 0 theme("colors.darkTextPrimary")',
transform: "scale(1)",
},
"50%": {
"box-shadow": '0 0 0 7px theme("colors.darkTextPrimary/0")',
transform: "scale(1.05)",
},
"100%": {
"box-shadow": '0 0 0 0 theme("colors.darkTextPrimary/0")',
transform: "scale(1)",
},
},
},
},
},
plugins: [],
};