-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
executable file
·48 lines (47 loc) · 1.07 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
/** @type {import('tailwindcss').Config} */
const { addDynamicIconSelectors } = require("@iconify/tailwind")
export default {
plugins: [
require("@tailwindcss/typography"),
require("daisyui"),
addDynamicIconSelectors(),
],
content: ["**/*.jsx"],
daisyui: {
darkTheme: "dark",
themes: [
{
light: {
primary: "#107daa",
"primary-content": "#ffffff",
secondary: "#ffffff",
"secondary-content": "#107daa",
accent: "#54b9e6",
"accent-content": "#f2f2f2",
neutral: "#f2f2f2",
"neutral-content": "#000000",
"base-100": "#ffffff",
info: "#d7eafc",
success: "#ddf2d8",
warning: "#ffe6bd",
error: "#ffdad8",
},
dark: {
primary: "#107daa",
"primary-content": "#eceff4",
secondary: "#eceff4",
"secondary-content": "#107daa",
accent: "#54b9e6",
"accent-content": "#f2f2f2",
neutral: "#434c5e",
"neutral-content": "#d8dee9",
"base-100": "#2e3440",
info: "#d7eafc",
success: "#ddf2d8",
warning: "#ffe6bd",
error: "#ffdad8",
},
},
],
},
}