-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
45 lines (44 loc) · 1.09 KB
/
tailwind.config.ts
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
import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
plugins: [require("daisyui"), require("@tailwindcss/typography")],
daisyui: {
themes: [
{
lightTheme: {
primary: "#3b82f6",
secondary: "#00ebff",
accent: "#003bff",
neutral: "#121815",
"base-100": "#fff7fd",
info: "#00ffff",
success: "#85f94e",
warning: "#ff9b00",
error: "#e12250",
body: {
"background-color": "#fff7fd",
},
},
darkTheme: {
primary: "#a700ff",
secondary: "#00c100",
accent: "#0057ff",
neutral: "#172537",
"base-100": "#182532",
info: "#5fcfff",
success: "#00e287",
warning: "#ff8200",
error: "#b92843",
body: {
"background-color": "#182532",
},
},
},
],
},
};
export default config;