-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
47 lines (46 loc) · 1.12 KB
/
tailwind.config.js
File metadata and controls
47 lines (46 loc) · 1.12 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{js,jsx,ts,tsx}",
],
theme: {
extend: {
colors:{
'themecolor': "#A72C63",
'textcolor': "#000000",
'loginbg': "#f4ecec",
'sideBarColor1': "#E8D8D8",
'sideBarColor2': "#362740",
"color1": "#DEC3CD",
'color2': "#f4ecec",
'color3': "#E8D8D8",
'color6': "#CCCCCC",
'color4': "#798777",
'color5': "#FFFFFF",
'cardColor': "#E8D8D8",
'hoverColor': "#DEB7C6",
// 'sideBarColor1': "#DFBFB5",
// 'color2': "#F0D7D1",
// 'color3': "#BC8D79",
// 'color4': "#B14B60",
// 'color5': "#FFE8EB",
"logoutButton": "#E8D8D8",
"logoutContent": "#D50000",
'check': "#094abc",
'buttonColor': "#A72C63",
},
spacing: {
'95': '95%',
'70': '70%'
},
gridTemplateRows: {
// Simple 8 row grid
'14': 'repeat(14, minmax(0, 1fr))',
},
gridRow: {
'span-12': 'span 12 / span 12',
}
},
},
plugins: [],
}