-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind-breeze.config.js
44 lines (41 loc) · 1.37 KB
/
tailwind-breeze.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
import defaultTheme from 'tailwindcss/defaultTheme';
import colors from 'tailwindcss/colors'
/** @type {import('tailwindcss').Config} */
export default {
content: [
'./vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php',
'./storage/framework/views/*.php',
'./resources/views/**/*.blade.php',
// Core
'./resources/views/**/*.blade.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',
// dynamic-dashboard
'../dynamic-dashboard/resources/views/themes/**/*.blade.php',
'../dynamic-dashboard/src/Models/Columns.php',
// filament
'./vendor/filament/**/*.blade.php',
'./src/CoreServiceProvider.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],
},
},
},
};