-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
50 lines (48 loc) · 999 Bytes
/
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
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}",
],
darkMode: "selector",
theme: {
extend: {
colors: {
blue: {
1: "#18a9f2",
2: "#91d2e4",
},
green: {
1: "#50b848",
2: "#bbe2c6",
},
red: {
1: "#e1bbbb",
},
gray: {
1: "#1b2436",
2: "#2f3c4e",
3: "#9da4af",
4: "#c1c6cf",
5: "#d6d8dd",
6: "#eaeaea",
},
},
borderRadius: {
1.25: "1.25rem",
},
keyframes: {
rotate: {
"0%": { transform: "rotate(0deg)" },
"100%": { transform: "rotate(360deg)" },
},
},
animation: {
"spin-slow": "rotate 1s linear infinite",
},
},
},
plugins: [],
};
export default config;