-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
64 lines (64 loc) · 1.73 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
/** @type {import('tailwindcss').Config} */
import daisyui from "daisyui";
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
darkMode: "selector",
theme: {
extend: {
screens: {
sm: "320px",
},
},
},
daisyui: {
themes: [
{
light: {
primary: "#ebdbb2",
"primary-content": "#3c3836",
secondary: "#bdae93",
"secondary-content": "#665c54",
accent: "#7c6f64",
"accent-content": "#e4e1de",
neutral: "#fbf1c7",
"neutral-content": "#6c6f64",
"base-100": "#f9f5d7",
"base-200": "#d9d5bb",
"base-300": "#b9b69f",
"base-content": "#282828",
info: "#076678",
"info-content": "#f9f5d7",
success: "#98971a",
"success-content": "#282828",
warning: "#d79921",
"warning-content": "#3c3836",
error: "#cc241d",
"error-content": "#f2e5bc",
},
dark: {
primary: "#ebdbb2",
"primary-content": "#282828",
secondary: "#928374",
"secondary-content": "#fbf1c7",
accent: "#d5c4a1",
"accent-content": "#3c3836",
neutral: "#1d2021",
"neutral-content": "#fbf1c7",
"base-100": "#282828",
"base-200": "#32302f",
"base-300": "#3c3836",
"base-content": "#fbf1c7",
info: "#83a598",
"info-content": "#282828",
success: "#b8bb26",
"success-content": "#282828",
warning: "#fabd2f",
"warning-content": "#282828",
error: "#fb4934",
"error-content": "#282828",
},
},
],
},
plugins: [daisyui],
};