-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
58 lines (52 loc) · 1.17 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
module.exports = {
darkMode: ['class'],
content: [
"./app/**/*.{js,ts,jsx,tsx}",
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
// Or if using `src` directory:
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
container: {
screens: {
'2xl': '1300px',
}
},
extend: {
colors: {
"bg-body": "#141a2a",
bg: {
primary: "#1649ff",
secondary: "#a6acb8",
three: "#1d263b"
},
text: {
primary: "#fff",
secondary: "#7a8090"
},
"admin-content": "#FBE7C6",
'primary-admin': "#A0E7E5",
'error': "#FA26A0",
'secondary-admin': "#FFAEBC",
'bg-admin': "#B4F8C8",
'whiteone': "#78A2CC",
dark: {
"admin-content": "#a5b1c2",
'primary-admin': "#0000FF",
'error': "#e74c3c",
'secondary-admin': "#7EC8E3",
'bg-admin': "#050A30",
'whiteone': "#fff",
}
},
keyframes: {
fadeInNav: {
'0%': { left: "-100%" },
'100%': { left: "0%" },
}
}
},
},
plugins: [],
}