-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
31 lines (30 loc) · 885 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
31 lines (30 loc) · 885 Bytes
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
module.exports = {
content: ['./data-access/**/*.{ts,tsx}', './pages/**/*.{ts,tsx}', './components/**/*.{ts,tsx}'],
theme: {
container: {
center: true,
padding: '1rem',
},
extend: {
fontFamily: {
heading: ['"Helvetica Neue"', 'sans-serif'],
},
colors: {
primary: '#222222',
accent: '#00a0c4',
success: '#42a548',
error: '#f23b2f',
'status-showroom': 'rgb(89, 141, 201)',
'status-coming_soon': 'rgb(89, 141, 201)',
'status-for_sale': 'rgb(83, 178, 0)',
'status-reserved': 'rgb(245, 141, 35)',
'status-booked': 'rgb(255, 96, 49)',
'status-sold': 'rgb(209, 58, 68)',
'status-not_for_sale': 'rgb(200, 200, 200)',
'status-hidden': 'rgb(200, 200, 200)',
'status-removed': 'rgb(200, 200, 200)',
},
},
},
plugins: [],
}