-
-
Notifications
You must be signed in to change notification settings - Fork 88
Expand file tree
/
Copy pathtailwind.config.js
More file actions
31 lines (30 loc) · 837 Bytes
/
tailwind.config.js
File metadata and controls
31 lines (30 loc) · 837 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
31
/** @type {import('tailwindcss').Config} */
const colors = require('tailwindcss/colors')
module.exports = {
content: [
"./resources/**/*.blade.php",
"./resources/**/*.js",
"./resources/**/*.vue",
"./node_modules/flowbite/**/*.js",
"./vendor/filament/**/*.blade.php",
"./config/system.php",
"./app/Http/Livewire/**/*.php",
"./app/View/**/*.php",
"./app/Models/**/*.php",
],
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'),
],
}