-
-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathtailwind.config.js
More file actions
30 lines (29 loc) · 813 Bytes
/
tailwind.config.js
File metadata and controls
30 lines (29 loc) · 813 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
/** @type {import('tailwindcss').Config} */
const colors = require('tailwindcss/colors')
module.exports = {
mode: 'jit',
content: [
'./resources/**/*.blade.php',
'./resources/**/*.js',
'./node_modules/flowbite/**/*.js',
'./vendor/filament/**/*.blade.php',
'./app/Http/Livewire/**/*.php',
'./app/Filament/Resources/**/*.php'
],
theme: {
extend: {
colors: {
danger: colors.rose,
primary: colors.blue,
success: colors.green,
warning: colors.yellow,
},
},
},
plugins: [
require('flowbite/plugin'),
require('@tailwindcss/forms'),
require('@tailwindcss/typography'),
require('tailwindcss-textshadow')
],
}