-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
68 lines (67 loc) · 1.52 KB
/
Copy pathtailwind.config.js
File metadata and controls
68 lines (67 loc) · 1.52 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {
extend: {
screens:{
xs: "320px",
sm: "375px",
sml: "500px",
md: "667px",
mdl: "768px",
lg: "960px",
lgl: "1024px",
xl: "1280px",
},
fontFamily: {
bodyFont: ["Poppins", "sans-serif"],
titleFont: ["Montserrat", "sans-serif"],
},
colors: {
bodyColor: "#212428",
lightText: "#c4cfde",
boxBg: "linear-gradient(145deg, #1e2024, #23272b)",
designColor: "#ff014f",
},
boxShadow: {
shadowOne: "10px 10px 19px #1c1e22, -10px -10px 19px #262a2e",
},
keyframes: {
updown: {
'0%': {
transform: 'translateY(-20px)',
},
'50%': {
transform: 'translateY(20px)',
},
'100%': {
transform: 'translateY(-20px)',
},
},
updownSmall: {
'0%': {
transform: 'translateY(-10px)',
},
'50%': {
transform: 'translateY(10px)',
},
'100%': {
transform: 'translateY(-10px)',
},
},
},
animation: {
updown: 'updown 3s linear infinite',
updownS: 'updownSmall 3s linear infinite',
},
container: {
center: true,
padding: {
DEFAULT: "1rem",
sm: "2rem",
},
},
},
},
plugins: [],
};