-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
49 lines (48 loc) · 1.28 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
/** @type {import('tailwindcss').Config} */
export const content = ["index.html", "./src/**/*.{html,js}", "./src/*.{html,js}"];
export const theme = {
colors: {
black: {
200: "hsl(210, 13%, 17%)",
300: "hsl(210, 13%, 15%)",
400: "hsl(210, 13%, 13%)",
500: "hsl(210, 13%, 11%)",
600: "hsl(210, 13%, 9%)",
700: "hsl(210, 13%, 7%)",
800: "hsl(210, 13%, 5%)",
900: "hsl(210, 13%, 3%)",
950: "hsl(210, 13%, 1%)",
},
gray: "hsl(0, 0%, 16.47%)",
white: "hsl(122, 100%, 100%)",
term: "hsl(120, 100%, 40%)",
green: {
100: "hsl(120, 41%, 97%)",
200: "hsl(120, 52.5%, 92.5%)",
300: "hsl(120, 47%, 85%)",
400: "hsl(120, 41%, 58%)",
500: "hsl(120, 42%, 45%)",
600: "hsl(120, 46%, 36%)",
700: "hsl(120, 43%, 27%)",
800: "hsl(120, 38%, 24%)",
900: "hsl(122, 36%, 20%)",
950: "hsl(122, 49%, 10%)",
},
},
extend: {
animation: {
"fade-in": "fade-in 0.5s ease-in-out forwards",
"fade-out": "fade-out 0.5s ease-in-out forwards",
},
keyframes: {
"fade-in": {
"0%": { opacity: "0%" },
"100%": { opacity: "100%" },
},
"fade-out": {
"0%": { opacity: "100%" },
"100%": { opacity: "0%" },
},
},
},
};