-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
55 lines (55 loc) · 1.22 KB
/
tailwind.config.js
File metadata and controls
55 lines (55 loc) · 1.22 KB
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
module.exports = {
important: true,
purge: {
enabled: process.env.NODE_ENV === "production" ? true : false,
content: [
"./app/javascript/**/*.js",
"./app/javascript/**/**/*.js",
"./app/javascript/**/**/**/*.js",
"./app/javascript/**/*.jsx",
"./app/javascript/**/**/*.jsx",
"./app/javascript/**/**/**/*.jsx",
"./app/views/**/**/*.slim",
"./app/views/**/**/*/*.slim",
"./node_modules/@bigbinary/neetoui/**/*",
],
defaultExtractor: content => content.match(/[A-Za-z0-9-_:/]+/g) || [],
},
theme: {
extend: {
colors: {
purple: {
50: "#F6F8FD",
100: "#EEF0FB",
200: "#D4DAF4",
300: "#BBC3EE",
400: "#8796E1",
500: "#5469D4",
600: "#4C5FBF",
700: "#323F7F",
800: "#262F5F",
900: "#192040",
},
},
},
maxHeight: {
0: "0%",
"3/4": "75%",
112: "28rem",
128: "32rem",
full: "100%",
},
minWidth: {
0: "0",
"1/4": "25%",
"1/2": "50%",
"3/4": "75%",
full: "100%",
65: "65rem",
},
},
variants: {
borderWidth: ["last"],
visibility: ["group-hover"],
},
};