-
Notifications
You must be signed in to change notification settings - Fork 10
/
tailwind.config.js
43 lines (43 loc) · 1.04 KB
/
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
43
/** @type {import('tailwindcss').Config} */
module.exports = {
important: true,
content: [
"./themes/**/*.{html,php,js,ts,jsx,tsx}",
"./app/Views/**/*.{html,php,js,ts,jsx,tsx}",
"./app/Views/**/**/*.{html,php,js,ts,jsx,tsx}",
],
safelist: [
"alert-success",
"alert-error",
"alert-info",
"progress-success",
"progress-error",
"progress-info",
"badge-success",
"badge-error",
],
theme: {
extend: {},
},
daisyui: {
themes: [
{
light: {
...require("daisyui/src/theming/themes")["light"],
primary: "#DD4815",
"primary-content": "#fff",
"base-content": "#000000de",
"base-100": "rgb(249, 250, 251)",
},
dark: {
...require("daisyui/src/theming/themes")["dark"],
primary: "#CD4417",
"primary-content": "#fff",
"base-content": "rgb(175, 176, 183)",
"base-100": "#242424",
},
},
],
},
plugins: [require("@tailwindcss/typography"), require("daisyui")],
};