-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
42 lines (39 loc) · 1.11 KB
/
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
// import preset from './vendor/filament/support/tailwind.config.preset'
import colors from 'tailwindcss/colors'
import forms from '@tailwindcss/forms'
import typography from '@tailwindcss/typography'
import preset from './tailwind.config.preset'
/** @type {import('tailwindcss').Config} */
export default {
presets: [preset],
content: [
'./app/Filament/**/*.php',
'./resources/views/**/*.blade.php',
'./vendor/filament/**/*.blade.php',
// './app/**/*.php',
// "./resources/**/*.{php,html,js,jsx,ts,tsx,vue,twig}",
'./resources/views/pdf/**/*.blade.php',
"./resources/**/*.js",
"./resources/**/*.vue",
],
darkMode: 'class',
// theme: {
// extend: {
// colors: {
// danger: colors.rose,
// primary: colors.blue,
// success: colors.green,
// warning: colors.yellow,
// },
// },
// },
variants: {
extend: {
backgroundColor: ['active'],
}
},
plugins: [
forms,
typography,
],
}