forked from spraakbanken/korp-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
31 lines (31 loc) · 975 Bytes
/
tailwind.config.js
File metadata and controls
31 lines (31 loc) · 975 Bytes
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
/** @format */
module.exports = {
// pug doesn't support special characters in class names, so no colon.
separator: "_",
content: ["./app/**/*.js", "./app/**/*.ts", "./app/**/*.html"],
theme: {
extend: {
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"],
}