-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
56 lines (55 loc) · 1.43 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
45
46
47
48
49
50
51
52
53
54
55
56
import type { Config } from "tailwindcss"
const config: Config = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
animation: {
"theme-text": "text 5s ease infinite",
"theme-slow-spin": "spin 35s linear infinite"
},
backgroundColor: {
"theme-beige-500": "#E4DABB",
"theme-beige-400": "#F0EAD7",
"theme-beige-300": "#EFE7CC",
"theme-beige-200": "#FDF8E9",
"theme-gray-500": "#808080",
"theme-gray-400": "#9E9E9E",
"theme-gray-300": "#C9C9C9",
"theme-gray-200": "#D9D9D9",
"theme-gray-100": "#EDEDED",
"theme-gray-50": "#F2F2F2",
},
borderRadius: {
"theme-small": "4px",
"theme-large": "8px",
},
borderColor: {
"theme-gray-400": "#9E9E9E",
"theme-gray-200": "#D9D9D9",
},
keyframes: {
text: {
"0%, 100%": {
"background-size": "200% 200%",
"background-position": "left center",
},
"50%": {
"background-size": "200% 200%",
"background-position": "right center",
},
},
},
textColor: {
"theme-gray-500": "#808080",
"theme-gray-400": "#9E9E9E",
"theme-gray-300": "#959595",
},
},
},
plugins: [],
}
export default config