-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
35 lines (34 loc) · 995 Bytes
/
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
/** @type {import('tailwindcss').Config} */
const colors = require('tailwindcss/colors')
export default {
content: [
'./resources/**/*.blade.php',
'./vendor/filament/**/*.blade.php',
"./resources/**/*.js",
"./node_modules/flowbite/**/*.js",
'<path-to-vendor>/awcodes/filament-badgeable-column/resources/**/*.blade.php',
],
darkMode: 'class',
theme: {
extend: {
colors: {
danger: colors.rose,
primary: colors.cyan,
success: colors.green,
warning: colors.yellow,
"light-gray": "#303640",
seconds: "rgba(6, 252, 63, 1)",
minutes: "rgba(252, 230, 0, 1)",
hours: "rgba(253, 41, 112, 1)",
},
fontFamily: {
main: ["Ubuntu", "sans-serif"],
},
},
},
plugins: [
require('@tailwindcss/forms'),
require('@tailwindcss/typography'),
require('flowbite/plugin')
],
}