-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
89 lines (89 loc) · 1.93 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
module.exports = {
content: ["./src/**/*.{html,ts,scss}"],
theme: {
colors: ({ colors }) => ({
inherit: colors.inherit,
current: colors.current,
transparent: colors.transparent,
gray: colors.gray,
purple: {
50: "#f3f3ff",
100: "#eaeafd",
200: "#d8d9fc",
300: "#b9b8fa",
400: "#948ff6",
500: "#7162f0",
600: "#5d41e6",
700: "#4e2fd2",
800: "#4127b0",
900: "#392396",
},
green: {
50: "#eefffa",
100: "#c6fff2",
200: "#8dffe6",
300: "#4bfdd7",
400: "#1eebc6",
500: "#00ceac",
600: "#00a68e",
700: "#018473",
800: "#07685d",
900: "#0b564d",
},
blue: {
50: "#f2fafd",
100: "#e3f3fb",
200: "#c2e8f5",
300: "#91d7ee",
400: "#4ebfe2",
500: "#28a8cf",
600: "#1988b0",
700: "#156d8f",
800: "#165c76",
900: "#174d63",
},
yellow: {
50: "#ffffe7",
100: "#feffc1",
200: "#fffd86",
300: "#fff341",
400: "#ffe40d",
500: "#ffd500",
600: "#d19c00",
700: "#a67002",
800: "#89570a",
900: "#74470f",
},
red: {
50: "#fff0f2",
100: "#ffdde2",
200: "#ffc0c8",
300: "#ff94a2",
400: "#ff576d",
500: "#ff2340",
600: "#ff0022",
700: "#d7001d",
800: "#b1031a",
900: "#920a1c",
},
orange: {
50: "#fffcea",
100: "#fff4c5",
200: "#ffea85",
300: "#ffd846",
400: "#ffc51b",
500: "#ffa200",
600: "#e27a00",
700: "#bb5302",
800: "#984008",
900: "#7c350b",
},
white: colors.white,
slate: colors.slate,
zinc: colors.zinc,
neutral: colors.neutral,
black: colors.black,
}),
},
important: true,
};