-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfilament.tailwind.config.js
42 lines (41 loc) · 1.08 KB
/
filament.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
35
36
37
38
39
40
41
42
/** @type {import('tailwindcss').Config} */
const colors = require("tailwindcss/colors");
module.exports = {
content: [
"./resources/views/filament/**/*.blade.php",
"./vendor/filament/**/*.blade.php",
],
darkMode: "class",
theme: {
extend: {
colors: {
danger: colors.rose,
primary: colors.gray,
success: colors.green,
warning: colors.yellow,
indigo: colors.indigo,
cyan: colors.cyan,
sky: colors.sky,
orange: colors.orange,
},
},
},
safelist: [
"text-orange-700",
"dark:text-orange-500",
"text-sky-700",
"dark:text-sky-500",
"text-indigo-700",
"dark:text-indigo-500",
"text-cyan-700",
"dark:text-cyan-500",
"bg-orange-500/10",
"bg-sky-500/10",
"bg-indigo-500/10",
"bg-cyan-500/10",
],
plugins: [
require("@tailwindcss/forms"),
require("@tailwindcss/typography"),
],
};