-
-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathtailwind.config.js
More file actions
43 lines (35 loc) · 754 Bytes
/
tailwind.config.js
File metadata and controls
43 lines (35 loc) · 754 Bytes
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 = {
darkMode: "class",
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
"light-start": " #d6dbdc",
},
},
},
plugins: [require("daisyui")],
daisyui: {
themes: [
"light",
{
"custom-dark": {
primary: "#2d63bc",
secondary: "#a78bfa",
accent: "#1FB2A5",
neutral: "#191D24",
"base-100": "#2A303C",
info: "#3ABFF8",
success: "#36D399",
warning: "#FBBD23",
error: "#F87272",
},
},
],
},
};