-
Notifications
You must be signed in to change notification settings - Fork 4
/
tailwind.config.ts
51 lines (48 loc) · 1.27 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
46
47
48
49
50
51
import type { Config } from "tailwindcss";
const config: Config = {
content: [
// break line
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
// Add color schemes
},
fontFamily: {
// Add custom fonts
},
},
},
plugins: [require("daisyui")],
daisyui: {
styled: true,
themes: [
{
// docs: https://daisyui.com/theme-generator
mytheme: {
"primary": "#5D5CD6",
"secondary": "#0DBA67",
"accent": "#FFB800",
"neutral": "#010101",
"base-100": "#FFFFFF",
// TODO: update as needed
"info": "#22D3EE",
"success": "#15803D",
"warning": "#FBBF24",
"error": "#DC2626",
},
},
// "dark"
],
base: true,
utils: true,
logs: false,
rtl: false,
prefix: "",
darkTheme: "dark",
},
};
export default config;