-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
89 lines (89 loc) · 2.16 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
83
84
85
86
87
88
89
module.exports = {
mode: "jit",
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
"./screens/**/*.{js,ts,jsx,tsx}"
],
theme: {
extend: {
screens: {
'xs': '480px'
},
width: {
"avatar-sm-w": "9.375rem",
"container-sm": "22.75rem",
},
maxWidth: {
"tablet-max-w": "90%",
"mobile-max-w": "88%",
"desktop-max-w": "1300px",
},
colors: {
tdBgColor: "hsla(224, 33%, 94%, .15)",
lightBlue: "hsl(182, 100%, 88%)",
lightGreen: "hsl(130, 100%, 88%)",
gunMetal: "hsl(192, 15%, 18%)",
blackCoral: "hsl(205, 13%, 37%);",
btnGradientTop: "hsl(192, 8%, 32%);",
btnGradientBott: "hsl(192, 8%, 28%);",
eventGradientTop: "hsl(198, 12%, 44%)",
eventGradientBott: "hsl(200, 16%, 31%)",
whiteText1: "#EFF2FA",
shadowWhite: "hsla(220, 11%, 90%, 1);",
shadowWhite2: "#9E9E9E",
purpleGradientStart: "#DFA4D9",
purpleGradientMid: "#BBABE7",
purpleGradientEnd: "#ABB8FF",
containerGray: "#606368",
darkLabel: "#414549",
headerBottom: "hsl(203, 13%, 25%);",
headerTop: "hsl(203, 13%, 40%);",
darkBtnBottomColor: "hsl(0, 0%, 20%);",
darkBtnTopColor: "hsl(0, 0%, 32%);",
lightBtnBottColor: "hsl(184, 26%, 61%);",
lightBtnTopColor: "hsl(184, 27%, 83%);",
darkText: "hsl(210, 6%, 21%);",
secondaryTextColor: "hsl(0, 0%, 80%)",
secondaryWhite: "hsl(218, 11%, 86%)",
softBlack: "hsl(0, 0%, 20%);",
softBlackTransparent: "hsl(0, 0%, 20%, .8);",
deepBlack: "hsla(0, 0%, 10%, 1);",
},
fontFamily: {
sans: ["Inter", "Poppins", "Roboto"],
},
animation: {},
keyframes: {
"lds-ellipsis1": {
"0%": {
transform: "scale(0)",
},
"100%": {
transform: "scale(1)",
},
},
"lds-ellipsis2": {
"0%": {
transform: "translate(0, 0)",
},
"100%": {
transform: "translate(24px, 0)",
},
},
"lds-ellipsis3": {
"0%": {
transform: "scale(1)",
},
"100%": {
transform: "scale(0)",
},
},
},
},
},
variants: {
extend: {},
},
plugins: [],
};