-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
70 lines (70 loc) · 1.55 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
59
60
61
62
63
64
65
66
67
68
69
70
module.exports = {
purge: ["./pages/**/*.{js,ts,jsx,tsx}", "./src/**/*.{js,ts,jsx,tsx}"],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
screens: {
xxs: "320px",
xs: "420px",
},
colors: {
blueGray: {
50: "#F8FAFC",
100: "#F1F5F9",
200: "#E2E8F0",
300: "#CBD5E1",
400: "#94A3B8",
500: "#64748B",
600: "#475569",
700: "#334155",
800: "#0D1219",
900: "#090C11",
},
coolGray: {
50: "#F9FAFB",
100: "#F3F4F6",
200: "#E5E7EB",
300: "#D1D5DB",
400: "#9CA3AF",
500: "#6B7280",
600: "#4B5563",
700: "#374151",
800: "#1F2937",
900: "#111827",
},
darkGray: {
100: "#cfd1d4",
200: "#a0a3a9",
300: "#70747d",
400: "#414652",
500: "#111827",
600: "#0e131f",
700: "#0a0e17",
800: "#070a10",
900: "#030508",
},
trueGray: {
50: "#626262",
100: "#5E5E5E",
200: "#575757",
300: "#4F4F4F",
400: "#474747",
500: "#404040",
600: "#303030",
700: "#212121",
800: "#121212",
900: "#030303",
},
},
},
},
variants: {
extend: {
backgroundColor: ["active", "disabled"],
cursor: ["disabled"],
translate: ["active"],
zIndex: ["hover"],
},
},
plugins: [],
};