-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtailwind.config.js
52 lines (52 loc) · 1.38 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: [
"./src/**/*.{js,jsx,ts,tsx}",
],
theme: {
extend: {
backgroundImage: {
'landing-background': 'url("/src/assets/img/LandingBackground.png")',
'dashboard': 'url("/src/assets/img/dashboard.png")',
'leave-application': 'url("/src/assets/img/LeaveApplication.png")',
'room-issue': 'url("/src/assets/img/RoomComplaint.png")',
'profile': 'url("/src/assets/img/profile.png")',
},
fontFamily: {
'roboto': ['Roboto', 'sans-serif'],
'nunito': ['Nunito', 'sans-serif'],
'chelsea': ['Chelsea Market', 'sans-serif'],
'anton': ['Anton', 'sans-serif'],
'comfortaa': ['Comfortaa', 'sans-serif'],
'righteous': ['Righteous', 'sans-serif'],
'fredoka': ['Fredoka One', 'sans-serif'],
'rubik': ['Rubik Moonrocks', 'sans-serif'],
},
colors: {
'primary': 'rgba(241, 174, 0, 1)',
'primary2': 'rgba(252, 209, 41, 1)',
gray: {
50: '#f7f7fb',
75: '#d8ddec',
150: '#ececec',
},
green: {
50: '#e9fbee',
},
blue: {
50: '#e4f5fd',
75: '#cfe3e4',
},
yellow: {
50: '#f5f9ea',
}
},
fontSize: {
'xxs': '10px',
},
borderWidth: {
'1': '1px',
},
},
},
plugins: [],
}