-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
tailwind.config.js
47 lines (41 loc) · 1.48 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
43
44
45
46
47
import defaultTheme from 'tailwindcss/defaultTheme';
import forms from '@tailwindcss/forms';
import colors from 'tailwindcss/colors'
import preset from './vendor/filament/support/tailwind.config.preset'
/** @type {import('tailwindcss').Config} */
export default {
presets: [preset],
content: [
'./vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php',
'./storage/framework/views/*.php',
'./resources/views/**/*.blade.php',
// filament
'./vendor/filament/**/*.blade.php',
// Lara Zeus
'./vendor/lara-zeus/**/*.blade.php',
'./src/CoreServiceProvider.php',
'./vendor/lara-zeus/rain/src/Models/Columns.php',
'./vendor/lara-zeus/sky/src/Models/PostStatus.php',
'./vendor/lara-zeus/wind/src/Filament/Resources/LetterResource.php',
'./vendor/lara-zeus/core/src/CoreServiceProvider.php',
// Filament plugins
'./vendor/ryangjchandler/filament-navigation/resources/**/*.blade.php',
],
theme: {
extend: {
colors: {
gray: colors.stone,
primary: colors.sky,
secondary: colors.pink,
danger: colors.red,
success: colors.green,
warning: colors.yellow,
info: colors.blue,
},
fontFamily: {
sans: ['Figtree', ...defaultTheme.fontFamily.sans],
},
},
},
plugins: [forms],
};