-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
30 lines (29 loc) · 937 Bytes
/
tailwind.config.js
File metadata and controls
30 lines (29 loc) · 937 Bytes
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
const colors = require('tailwindcss/colors')
const defaultTheme = require('tailwindcss/defaultTheme')
module.exports = {
content: [
'./packages/admin/resources/**/*.blade.php',
'./packages/forms/resources/**/*.blade.php',
'./packages/notifications/resources/**/*.blade.php',
'./packages/support/resources/**/*.blade.php',
'./packages/tables/resources/**/*.blade.php',
],
darkMode: 'class',
theme: {
extend: {
colors: {
danger: colors.rose,
primary: colors.indigo,
success: colors.green,
warning: colors.amber,
},
fontFamily: {
sans: ['Nunito Regular', 'Times New Roman', 'DM Sans', ...defaultTheme.fontFamily.sans],
},
},
},
plugins: [
require('@tailwindcss/forms'),
require('@tailwindcss/typography'),
],
}