-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtailwind-frontend.config.js
56 lines (55 loc) · 2.38 KB
/
tailwind-frontend.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
import colors from 'tailwindcss/colors'
import preset from './vendor/filament/filament/tailwind.config.preset'
module.exports = {
presets: [preset],
darkMode: 'class',
content: [
// Core
'./resources/views/**/*.blade.php',
'./src/CoreServiceProvider.php',
// Wind
'../wind/resources/views/themes/**/*.blade.php',
// Sky
'../sky/resources/views/themes/**/*.blade.php',
// Bolt
'../bolt/resources/views/themes/**/*.blade.php',
'../bolt/src/Models/FormsStatus.php',
// Thunder
'../thunder/resources/views/themes/**/*.blade.php',
'../thunder/src/Models/TicketsStatus.php',
// athena
'../athena/resources/views/themes/**/*.blade.php',
'../athena/resources/views/components/**/*.blade.php',
'../athena/src/Models/RequestStatus.php',
// helen
'../helen/resources/views/**/*.blade.php',
'../helen/src/Filament/Resources/LinksResource.php',
'../helen/src/Facades/Helen.php',
// hermes
'../hermes/resources/views/themes/**/*.blade.php',
// Rain
'../rain/resources/views/themes/**/*.blade.php',
'../rain/src/Models/Columns.php',
// filament
'./vendor/filament/**/*.blade.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/typography'),
require('@tailwindcss/forms'),
require('tailwindcss-debug-screens'),
],
};