-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
82 lines (82 loc) · 2.36 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
// tailwind.config.js
module.exports = {
content: [
'./src/pages/**/*.{js,ts,jsx,tsx}',
'./src/components/**/*.{js,ts,jsx,tsx}',
],
theme: {
screens: {
sm: '576px',
md: '768px',
lg: '992px',
xl: '1200px',
},
extend: {
colors: {
body: "#333333",
white: {
DEFAULT: "#FFFFFF",
light: "#f3f2f2",
},
dark: "#202020",
},
fontFamily: {
base: ['"Readex Pro"', 'sans-serif'],
heading: ['"Readex Pro"', 'sans-serif'],
},
fontSize: {
body: "14px",
},
container: {
center: true,
padding: "15px",
},
backgroundPosition: {
"center-top": "50% 0px",
},
letterSpacing: {
4: "4px",
},
lineHeight: {
0: "0",
},
dropShadow: {
thumb: "0px 0px 21px rgb(0 0 0 / 30%)",
portfolio: "0px 10px 27px rgb(0 0 0 / 10%)",
},
boxShadow: {
"scroll-top": "0px -2px 9.9px 0.1px rgb(186 187 188 / 25%)",
},
transitionDuration: {
400: "0.4s",
},
transitionProperty: {
height: "height",
spacing: "margin, padding",
},
height: {
unset: "unset",
},
animation: {
lineround: "lineround 1200ms linear 0s infinite",
lineheight: "lineheight 1000ms ease-in-out 0s forwards",
preloaded: "preloaded 500ms ease-in-out 300ms forwards",
},
keyframes: {
lineround: {
"0%": { transform: "translateY(-100%)" },
"100%": { transform: "translateY(200%)" },
},
lineheight: {
"0%": { height: 0 },
"100%": { height: "100%" },
},
preloaded: {
"0%": { width: "50%" },
"100%": { width: 0 },
},
},
},
},
plugins: [],
};