-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtailwind.config.js
53 lines (45 loc) · 1.19 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
/** @type {import('tailwindcss').Config} */
export default {
darkMode: "false",
content: [
"./resources/**/*.blade.php",
"./resources/**/*.js",
"./resources/**/*.vue",
'node_modules/preline/dist/*.js',
],
theme: {
extend: {
fontFamily: {
jakarta: ["'Plus Jakarta Sans'", "sans-serif"],
},
backgroundImage: {
"card-subjudul": "url('/public/img/bg-cardSubjudul.png')",
},
colors: {
lightText: "#f3f4f6",
darkText: "#111827",
},
},
},
daisyui: {
themes: [
{
mytheme: {
primary: "#1d4ed8",
secondary: "#2563eb",
accent: "#D5E1FE",
neutral: "#9ca3af",
"base-100": "#f3f4f6",
info: "#9ca3af",
success: "#008a3c",
warning: "#c11d00",
error: "#e40036",
},
},
],
},
plugins: [
require("daisyui"),
require('preline/plugin'),
],
};