-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
60 lines (59 loc) · 1.65 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
/**
* @type {import('tailwindcss').Config}
*/
export default {
content: ["./app/**/*.{js,ts,jsx,tsx}"],
theme: {
screens: {
xs: { min: "360px" },
sm: { min: "425px" },
md: { min: "768px" },
lg: { min: "992px" },
xl: { min: "1200px" },
xxl: { min: "1440px" },
},
extend: {
colors: {
primary: "hsl(204, 100%, 40%)",
success: "hsl(147, 60%, 50%)",
warning: "hsl(55, 90%, 45%)",
neutral: "hsl(204, 15%, 65%)",
neutral2: "hsl(211deg, 25%, 84%)",
"gray-blue": {
100: "hsl(204, 10%, 90%)",
200: "hsl(204, 10%, 75%)",
300: "hsl(204, 15%, 65%)",
400: "hsl(204, 15%, 59%)",
500: "hsl(204, 15%, 50%)",
600: "hsl(204, 20%, 40%)",
700: "hsl(204, 20%, 30%)",
750: "hsl(204, 20%, 25%)",
800: "hsl(204, 20%, 20%)",
900: "hsl(204, 30%, 12%)",
950: "hsl(204, 30%, 7%)",
},
},
animation: {
"flow-1": "flow 1.4s cubic-bezier(0.455, 0.03, 0.515, 0.955) -0.3s infinite both",
"flow-2": "flow 1.4s cubic-bezier(0.455, 0.03, 0.515, 0.955) -0.15s infinite both",
"flow-3": "flow 1.4s cubic-bezier(0.455, 0.03, 0.515, 0.955) 0s infinite both",
},
keyframes: ({ theme }) => ({
flow: {
"0%, 80%, 100%": {
transform: "scale(0.3)",
backgroundColor: theme("colors.white"),
},
"40%": {
transform: "scale(1)",
backgroundColor: theme("colors.cool-gray.300"),
},
},
}),
zIndex: {
1: "1",
},
},
},
plugins: [],
}