forked from stake-house/wagyu-key-gen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
68 lines (68 loc) · 1.66 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
/** @type {import('tailwindcss').Config} */
module.exports = {
prefix: "tw-",
content: ['./src/react/**/*.{ts,tsx,html}'],
theme: {
colors: {
cyan: "cyan",
gray: "gray",
transparent: "transparent",
gray1: "#F1F6FE",
gray2: "#E3EBF7",
gray3: "#d0dae8",
gray4: "#ACBED5",
darkGray: "#A9A9A9",
textDark: "#0B1E58",
primaryBlue: "#3366FF",
primaryBlueDark: "#174BE6",
darkBlue: "#0f4c75",
mediumBlue: "#3282b8",
lightBlue: "#bbe1fa",
white: "#FFFFFF",
red: "#fa1e0e",
lightGreen: "#52b788",
background: "#1B262C",
backgroundLight: "#354D5A",
buttonColor: "#bbe1fa",
buttonHover: "#52b788",
heading: "#3282b8",
mainContent: "#d0dae8",
mainContentAlert: "#fa1e0e",
black: "#000000",
disabledButton: "#0f4c75",
yellow: "#FFA600",
orange: "#F2994A",
},
extend: {
fontSize: {
xxs: ".625rem",
},
keyframes: {
OnlinePulse: {
"0%": {
"background-color": "rgba(250, 30, 14, 0.7)",
"width": "0px",
"height": "0px"
},
"70%": {
"background-color": "rgba(250, 30, 14, 0)",
"width": "50px",
"height": "50px",
"margin": "-25px"
},
"100%": {
"background-color": "rgba(250, 30, 14, 0)",
"width": "60px",
"height": "60px",
"margin": "-30px"
}
},
},
animation: {
LoaderSpin: "spin 2s linear infinite",
OnlinePulse: "OnlinePulse 3s infinite"
}
}
},
plugins: [],
}