-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
61 lines (55 loc) · 1.57 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
53
54
55
56
57
58
59
60
61
const defaultTheme = require('tailwindcss/defaultTheme');
module.exports = {
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: ['Poppins', ...defaultTheme.fontFamily.sans],
},
colors: {
transparent: 'transparent',
current: 'currentColor',
red: {
DEFAULT: '#F3451E',
},
green: {
DEFAULT: '#4CAF50'
},
gray: {
DEFAULT: '#ECECEC'
},
'dark-blue': {
DEFAULT: '#022D4D'
},
'faint-blue': {
DEFAULT: '#617F95'
},
yellow: {
DEFAULT: '#FFD703'
},
white: "#FFFFFF",
'cool-gray-600': {
DEFAULT: '#4b5563 '
},
'amber-600': {
DEFAULT: '#d97706 '
},
'indigo-700': {
DEFAULT: '#4338ca '
},
'rose-600': {
DEFAULT: '#e11d48 '
}
}
},
},
variants: {
border: ['focus'],
},
plugins: [require('@tailwindcss/forms')],
};