-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
106 lines (105 loc) · 2.81 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
import colors from "tailwindcss/colors";
import plugin from "tailwindcss/plugin";
export default {
content: [
"./storage/framework/views/*.php",
"./resources/**/*.blade.php",
"./resources/**/*.js",
"./resources/**/*.vue",
],
darkMode: "class", // or 'media' or 'class'
theme: {
extend: {
colors: {
bgray: colors.slate,
blue: {
light: "#6282D9",
},
dark: {
bg: "#01051C",
menu: "#0C1027",
header: "#030B1E",
card: "#0D1437",
alt: "#1c2e60",
cancel: "#141830",
blue: "#000D46",
blue2: "#253791",
},
},
borderRadius: {
half: "50%",
},
minHeight: {
4: "1rem",
5: "1.25rem",
8: "2rem",
10: "2.5rem",
12: "3rem",
14: "3.5rem",
16: "4rem",
24: "6rem",
28: "7rem",
36: "9rem",
80: "20rem",
},
minWidth: {
8: "2rem",
14: "3.5rem",
16: "4rem",
24: "6rem",
28: "7rem",
64: "16rem",
72: "18rem",
80: "20rem",
90: "24rem",
124: "31rem",
130: "34rem",
},
maxWidth: {
14: "3.5rem",
16: "4rem",
20: "5rem",
24: "6rem",
},
maxHeight: {
14: "3.5rem",
16: "4rem",
20: "5rem",
24: "6rem",
},
height: {
18: "4.5rem",
},
width: {
18: "4.5rem",
90: "24rem",
100: "27rem",
124: "31rem",
128: "32rem",
130: "34rem",
134: "36rem",
138: "38rem",
180: "42rem",
184: "44rem",
188: "46rem",
192: "48rem",
194: "49rem",
},
zIndex: {
100: 100,
},
},
},
variants: {
extend: {},
},
plugins: [
plugin(function ({ addVariant, e }) {
addVariant("arabic", ({ modifySelectors, separator }) => {
modifySelectors(({ className }) => {
return [".arabic", `.arabic${e(`${separator}${className}`)}`].join(" ");
});
});
}),
],
};