-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
47 lines (36 loc) · 1016 Bytes
/
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
module.exports = {
content: [
"node_modules/@frostui/tailwindcss/**/*.js",
'./storage/framework/views/*.php',
'./resources/**/*.blade.php',
'./resources/**/*.js',
'./resources/**/*.vue',
],
darkMode: ['class', '[data-mode="dark"]'],
theme: {
container: {
center: true,
},
fontFamily: {
'base': ['Inter', 'sans-serif'],
},
extend: {
colors: {
'primary': '#3073F1',
'secondary': '#68625D',
'success': '#1CB454',
'warning': '#E2A907',
'info': '#0895D8',
'danger': '#E63535',
'light': '#eef2f7',
'dark': '#313a46',
},
},
},
plugins: [
require('@frostui/tailwindcss/plugin'),
require('@tailwindcss/forms'),
require('@tailwindcss/typography'),
require('@tailwindcss/aspect-ratio'),
],
}