forked from suriya-mca/pimify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
52 lines (52 loc) · 1.21 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
module.exports = {
content: ["templates/admin/index.html"],
media: false,
darkMode: "class",
theme: {
extend: {
colors: {
primary: {
50: "rgb(255, 250, 240)",
100: "rgb(255, 238, 204)",
200: "rgb(254, 215, 170)",
300: "rgb(253, 186, 114)",
400: "rgb(251, 146, 60)",
500: "rgb(245, 121, 0)",
600: "rgb(220, 98, 10)",
700: "rgb(184, 79, 18)",
800: "rgb(140, 62, 25)",
900: "rgb(104, 47, 24)",
},
},
fontSize: {
0: [0, 1],
xxs: ["11px", "14px"],
},
fontFamily: {
sans: ["Inter", "sans-serif"],
},
minWidth: {
sidebar: "18rem",
},
spacing: {
68: "17rem",
128: "32rem",
},
transitionProperty: {
height: "height",
width: "width",
},
width: {
sidebar: "18rem",
},
},
},
variants: {
extend: {
borderColor: ["checked", "focus-within", "hover"],
display: ["group-hover"],
overflow: ["hover"],
textColor: ["hover"],
},
},
};