-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
40 lines (33 loc) · 957 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
33
34
35
36
37
38
39
40
const withMT = require("@material-tailwind/react/utils/withMT");
module.exports = withMT({
content: ["./index.html", "./src/**/*.{vue,js,ts,jsx,tsx}"],
theme: {
extend: {
colors: {
primary: "#00040f",
secondary: "#00f6ff",
dimWhite: "rgba(255, 255, 255, 0.7)",
dimBlue: "rgba(9, 151, 124, 0.1)",
blueo: "#1d4ed8",
grayh: "#ffffff0e",
grayr: "#0f1014",
// ------hadis tag-----------
Hasan: "#9fd568",
Daif: "#ff8c00",
Sahih: "#008000",
Shadh: "#ffb6c1",
Munkar: "#ff69b4",
Mawdu: "#ff0000",
},
fontFamily: {
poppins: ["Poppins", "sans-serif"],
},
animation: {
'ping-slow': 'ping 3s linear infinite', // 3s duration
'bounce-slow': 'bounce 6s infinite', // 3s duration
'ping-fast': 'ping 0.5s linear infinite', // 0.5s duration
},
},
},
plugins: [],
});