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