-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
47 lines (43 loc) · 1.45 KB
/
tailwind.config.js
File metadata and controls
47 lines (43 loc) · 1.45 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
import defaultTheme from 'tailwindcss/defaultTheme';
import forms from '@tailwindcss/forms';
/** @type {import('tailwindcss').Config} */
export default {
content: [
'./vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php',
'./storage/framework/views/*.php',
'./resources/views/**/*.blade.php',
'./resources/js/**/*.vue',
],
theme: {
extend: {
fontFamily: {
sans: ['Montserrat', ...defaultTheme.fontFamily.sans],
},
colors: {
"virtual-blue": "#0019DA",
"gray-circles": "#E5E7EB",
"graybell": "#d4d4d4",
"audostrade" : "#40865c",
"audostradeHover" : "#47ae70",
"blu": "#446995",
"icon-color": "#64748b",
"bg-icon": "#F1F5F9",
},
zIndex: {
'900': '999999999',
'700': '999999',
'400': '40000',
'200': '2000',
},
gridTemplateColumns: {
// Simple 16 column grid
'16': 'repeat(16, minmax(0, 1fr))',
'17': 'repeat(17, minmax(0, 1fr))',
'18': 'repeat(18, minmax(0, 1fr))',
// Complex site-specific column configuration
'footer': '200px minmax(900px, 1fr) 100px',
},
},
},
plugins: [forms],
};