-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
48 lines (47 loc) · 1.05 KB
/
tailwind.config.ts
File metadata and controls
48 lines (47 loc) · 1.05 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
/** @type {import('tailwindcss').Config} */
export default {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {
extend: {
colors: {
main: "#134B84",
white: "#FFFFFF",
"black-70": "rgba(0,0,0,0.7)",
},
boxShadow: {
"custom-shadow": "1px 2px 8px 0 rgba(0,0,0,0.04)",
"span-shadow": "1px 1px 8px 0 rgba(0,0,0,0.12)",
},
keyframes: {
fadeIn: {
"0%": {
opacity: "0",
transform: "translateY(50%)",
},
"100%": {
opacity: "1",
transform: "translateY(0)",
},
},
fadeUpTodown: {
"0%": {
opacity: "0",
transform: "translateY(-50%)",
},
"100%": {
opacity: "1",
transform: "translateY(0)",
},
},
},
animation: {
fadeIn: "fadeIn 0.5s ",
fadeUpToDown: "fadeUpTodown 0.5s",
},
},
fontFamily: {
sans: ["Noto Sans", "sans-serif"],
},
},
plugins: [],
};