-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
44 lines (42 loc) · 1.1 KB
/
tailwind.config.ts
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
import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
colors: {
dodgerBlue: "#38B6FF",
codGray: {
500: "#121212",
400: "#1A1A1A",
300: "#212121",
200: "#262626",
100: "#2C2C2C",
},
white: "#FFFFFF",
black: "#000000",
transparent: "transparent",
},
extend: {
keyframes: {
wave: {
"0%": { transform: "rotate( 0.0deg)" },
"10%": { transform: "rotate(14.0deg)" },
"20%": { transform: "rotate(-8.0deg)" },
"30%": { transform: "rotate(14.0deg)" },
"40%": { transform: "rotate(-4.0deg)" },
"50%": { transform: "rotate(10.0deg)" },
"60%": { transform: "rotate( 0.0deg)" },
"100%": { transform: "rotate( 0.0deg)" },
},
},
animation: {
"waving-hand": "wave 2.5s linear infinite",
},
},
},
plugins: [],
};
export default config;