-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
58 lines (53 loc) · 1.44 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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
keyframes: {
wiggle: {
"0%, 100%": {transform: "rotate(-3deg)"},
"50%": {transform: "rotate(3deg)"}
}
},
animation: {
wiggle: "wiggle 250ms ease-in-out 3"
},
transitionDelay: {
"50": "0ms",
"100": "0ms",
"200": "25ms",
"300": "25ms",
"400": "50ms",
"500": "50ms",
"600": "75ms",
"700": "75ms",
"800": "100ms",
"900": "100ms"
},
colors: {
primary: {
'50': '#F5FEFF',
'100': '#EBFAFC',
'200': '#CAF3FA',
'300': '#ADEAF7',
'400': '#74D7F2',
'500': '#3cc0ec',
'600': '#31A7D6',
'700': '#2280B3',
'800': '#155E8F',
'900': '#0C406B',
'950': '#052445'
}
}
}
},
variants: {
extend: {
zIndex: ["hover"]
}
},
plugins: [require("@tailwindcss/forms")],
}