-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathtailwind.config.js
32 lines (32 loc) · 976 Bytes
/
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
/** @format */
module.exports = {
content: ["./app/**/*.js", "./app/**/*.ts", "./app/**/*.html"],
theme: {
extend: {
animation: {
"spin-slow": "spin 2s linear infinite",
},
colors: {
gray: {
100: "#f5f5f5",
200: "#eeeeee",
300: "#e0e0e0",
400: "#bdbdbd",
500: "#9e9e9e",
600: "#757575",
700: "#616161",
800: "#424242",
900: "#212121",
},
orange: {
900: "#f2581a",
},
blue: {
100: "rgb(221, 233, 255)",
},
},
},
},
// classes used in, for example, mode-files are not added to bundle automatically
safelist: ["my-5", "h-32", "p-5", "text-lg", "mt-2", "mt-3"],
}