-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtailwind-filament.config.js
107 lines (106 loc) · 3.05 KB
/
tailwind-filament.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
import preset from './vendor/filament/filament/tailwind.config.preset'
import colors from 'tailwindcss/colors'
module.exports = {
presets: [preset],
content: [
// Wind
'../wind/src/Filament/Resources/LetterResource.php',
'../wind/resources/views/**/*.blade.php',
'../wind/src/Livewire/ContactsForm.php',
// Sky
'../sky/resources/views/components/nav-item.blade.php',
'../sky/resources/views/filament/**/*.blade.php',
'../sky/src/Models/PostStatus.php',
// DynamicDashboard
'../dynamic-dashboard/resources/views/filament/**/*.blade.php',
'../dynamic-dashboard/src/Models/Columns.php',
// Rhea
'../rhea/resources/views/**/*.blade.php',
// Bolt
'../bolt/resources/views/filament/**/*.blade.php',
// Bolt pro
'../bolt-pro/resources/views/filament/**/*.blade.php',
// Thunder
'../thunder/resources/views/**/*.blade.php',
'../thunder/src/Models/TicketsStatus.php',
'../thunder/vendor/jaocero/activity-timeline/resources/views/**/*.blade.php',
'../thunder/src/Models/TicketsStatus.php',
// hera
'../hera/resources/views/**/*.blade.php',
// replies
'../replies/resources/views/**/*.blade.php',
// quantity
'../quantity/resources/views/**/*.blade.php',
// hermes
'../hermes/resources/views/**/*.blade.php',
// matrix-choice
'../matrix-choice/resources/views/**/*.blade.php',
// accordion
'../accordion/resources/views/**/*.blade.php',
// list-group
'../list-group/resources/views/**/*.blade.php',
// helen
'../helen/resources/views/**/*.blade.php',
'../helen/src/Filament/Resources/LinksResource.php',
'../helen/src/Facades/Helen.php',
],
theme: {
extend: {
colors: {
gray: colors.stone,
primary: {
DEFAULT: '#45B39D',
50: '#C6E9E2',
100: '#B8E4DB',
200: '#9AD8CC',
300: '#7DCDBD',
400: '#5FC1AE',
500: '#45B39D',
600: '#358B79',
700: '#266256',
800: '#163A32',
900: '#07110F',
950: '#000000',
},
custom: {
DEFAULT: '#45B39D',
50: '#C6E9E2',
100: '#B8E4DB',
200: '#9AD8CC',
300: '#7DCDBD',
400: '#5FC1AE',
500: '#45B39D',
600: '#358B79',
700: '#266256',
800: '#163A32',
900: '#07110F',
950: '#000000',
},
secondary: {
DEFAULT: '#F1948A',
50: '#FDF2F0',
100: '#FCE7E5',
200: '#F9D2CE',
300: '#F6BEB8',
400: '#F4A9A1',
500: '#F1948A',
600: '#EB6658',
700: '#E53826',
800: '#BC2717',
900: '#8A1C11',
950: '#71170E',
},
danger: colors.rose,
success: colors.green,
warning: colors.yellow,
info: colors.blue,
},
},
},
plugins: [
require('tailwindcss-debug-screens'),
require('@tailwindcss/typography'),
require('@tailwindcss/forms'),
require('tailwindcss-debug-screens'),
],
}