-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathtailwind.config.js
96 lines (93 loc) · 2.48 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
const defaultTheme = require("tailwindcss/defaultTheme");
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php",
"./vendor/laravel/jetstream/**/*.blade.php",
"./storage/framework/views/*.php",
"./resources/views/**/*.blade.php",
"./resources/js/**/*.vue",
],
plugins: [
require("@tailwindcss/forms"),
require("@tailwindcss/typography"),
require("daisyui"),
],
daisyui: {
styled: true,
//themes: true,
themes: [
{
goldfish: {
primary: "#dc2626",
secondary: "#f3f4f6",
accent: "#b91c1c",
neutral: "#f3f4f6",
"base-100": "#ffffff",
info: "#3D72F0",
success: "#84cc16",
warning: "#eab308",
error: "#ef4444",
},
darkness: {
primary: "#dc2626",
secondary: "#f3f4f6",
accent: "#b91c1c",
neutral: "#111827",
"base-100": "#1f2937",
info: "#3D72F0",
success: "#84cc16",
warning: "#eab308",
error: "#ef4444",
},
},
/* "light",
"dark",
"cupcake",
"bumblebee",
"emerald",
"corporate",
"synthwave",
"retro",
"cyberpunk",
"valentine",
"halloween",
"garden",
"forest",
"aqua",
"lofi",
"pastel",
"fantasy",
"wireframe",
"black",
"luxury",
"dracula",
"cmyk",
"autumn",
"business",
"acid",
"lemonade",
"night",
"coffee",
"winter", */
],
base: true,
utils: true,
logs: true,
rtl: false,
prefix: "",
darkTheme: "darkness",
},
theme: {
extend: {
width: {
68: "68px",
88: "88px",
275: "275px",
290: "290px",
350: "350px",
600: "600px",
},
},
},
};