-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
71 lines (70 loc) · 1.68 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
"./app/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
fontSize: {
xs: "11px",
xl: "19px",
"2xl": "23px",
"3xl": "32px",
},
lineHeight: {
72: "57.6px",
48: "38.4px",
},
fontFamily: {
sans: ["Metropolis", "sans-serif"],
},
colors: {
"light-blue": "#38ACE2",
"dark-blue": "#0F1A24",
"light-black": "#2E2E2E",
"light-yellow": "#FFCF79",
grey: "#EBEBF5",
"grey-30": "#C5C6C7",
magenta: "#ED3293",
error: "#FB5913",
"primary-yellow": "#FDB913",
"medium-overlay": "rgba(255, 255, 255, 0.12)",
"low-overlay": "rgba(255, 255, 255, 0.05)",
"supporting-text": "rgba(255, 255, 255, 0.7)",
"disabled-grey": "rgba(255, 255, 255, 0.38)",
},
screens: {
xs: "400px",
},
animation: {
"slide-in-bottom": "slideInBottom 0.5s ease-out",
"slide-out-bottom": "slideOutBottom 0.5s ease-in",
},
keyframes: {
slideInBottom: {
"0%": {
transform: "translateY(100%)",
opacity: "0",
},
"100%": {
transform: "translateY(0)",
opacity: "1",
},
},
slideOutBottom: {
"0%": {
transform: "translateY(0)",
opacity: "1",
},
"100%": {
transform: "translateY(100%)",
opacity: "0",
},
},
},
},
},
plugins: [],
};