-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
58 lines (58 loc) · 1.31 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/**/**/*.{ts,js,tsx,jsx}",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
colors: {
skyBlueColor: "#112148",
midNightBlueColor: "#00b5e2",
MintGreen: "#391f9b",
white: "#ffffff",
gray: "#F8F3F325",
grayv: "#9CA3AF",
oceanBlue: "#00B5E2",
},
extend: {
fontFamily: {
IPM: "IBM Plex Mono, monospace",
WorkSans: "Work Sans, sans-serif",
},
},
animation: {
up: "up 6s ease-in-out infinite",
down: "down 6s ease-in-out infinite",
spin: "spin 30s linear infinite",
},
keyframes: {
up: {
"0%": {
transform: "translateY(0)",
},
"50%": { transform: "translateY(-200%) scale(1.5)" },
},
down: {
"0%": {
transform: "translateY(0)",
},
"50%": { transform: "translateY(200%) scale(1.5)" },
},
spin: {
"0%": {
transform: "rotate(0deg)",
},
"100%": { transform: "rotate(360deg)" },
},
fontFamily:{
IPM:"IBM Plex Mono, monospace",
WorkSans:"Work Sans, sans-serif"
},
animation: {
'spin-slow': 'spin 3s linear infinite',
}
},
},
plugins: [],
};