forked from OpenLitterMap/openlittermap-web
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
36 lines (34 loc) · 1013 Bytes
/
tailwind.config.js
File metadata and controls
36 lines (34 loc) · 1013 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
32
33
34
35
36
import headlessui from '@headlessui/tailwindcss';
export default {
content: [
'./resources/views/**/*.blade.php',
'./resources/js/**/*.{vue,js,ts}',
'./resources/css/leaflet/MarkerCluster.css',
'./resources/css/leaflet/MarkerCluster.Default.css',
],
theme: {
extend: {
backgroundImage: {
'blue-bg': 'linear-gradient(141deg, #1577c6 0%, #3273dc 71%, #4366e5 100%)',
},
colors: {
'gray-text': '#4a4a4a',
'dark-text': '#363636',
'olm-green': '#03aa6f',
},
},
},
plugins: [
headlessui,
function ({ addBase }) {
addBase({
'html, body': {
margin: '0',
padding: '0',
height: '100%',
},
});
},
],
safelist: ['marker-cluster-small', 'marker-cluster-medium', 'marker-cluster-large', 'mi'],
};