-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
43 lines (40 loc) · 962 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
const defaultColors = require('tailwindcss/colors')
const colors = {
...defaultColors,
...{
"phe": {
DEFAULT: '#C75155',
'50': '#F4DCDD',
'100': '#EFCCCE',
'200': '#E5AEAF',
'300': '#DB8F91',
'400': '#D17073',
'500': '#C75155',
'600': '#A9373A',
'700': '#7F292C',
'800': '#551B1D',
'900': '#2A0E0F'
},
},
}
module.exports = {
content: [
'./resources/**/*.blade.php',
'./vendor/filament/**/*.blade.php',
],
darkMode: 'class',
theme: {
extend: {
colors: {
danger: colors.red,
primary: colors.phe,
success: colors.green,
warning: colors.yellow,
},
},
},
plugins: [
require('@tailwindcss/forms'),
require('@tailwindcss/typography'),
],
}