-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
81 lines (80 loc) · 2.31 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
import type { Config } from "tailwindcss";
import daisyui from 'daisyui';
export default {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
daisyui: {
themes: [
{
ruminate: {
"primary": "#790e4a",
"primary-content": "#f7cbc0",
"secondary": "#11639a",
"secondary-content": "#def7ea",
"accent": "#563058",
"accent-content": "#f8f5f1",
"neutral": "#f8f5f1",
"neutral-content": "#222737",
"base-0": "#ffffff",
"base-100": "#f6f6f8",
"base-200": "#DEDFE3",
"base-300": "#C7C8CD",
"base-400": "#AFB1B8",
"base-500": "#989AA2",
"base-600": "#80838D",
"base-700": "#696C77",
"base-800": "#515562",
"base-900": "#3A3E4C",
"base-1000": "#000000",
"base-content": "#222737",
"info": "#563058",
"info-content": "#f8f5f1",
"success": "#7eb672",
"success-content": "#222737",
"warning": "#fba63a",
"warning-content": "#222737",
"error": "#D93226",
"error-content": "#222737",
},
},
{
ruminatedark: {
"primary": "#f7cbc0",
"primary-content": "#790e4a",
"secondary": "#def7ea",
"secondary-content": "#11639a",
"accent": "#f8f5f1",
"accent-content": "#563058",
"neutral": "#222737",
"neutral-content": "#f8f5f1",
"base-0": "#000000",
"base-100": "#80838D",
"base-200": "#696C77",
"base-300": "#515562",
"base-400": "#3A3E4C",
"base-500": "#989AA2",
"base-600": "#f6f6f8",
"base-700": "#DEDFE3",
"base-800": "#C7C8CD",
"base-900": "#AFB1B8",
"base-1000": "#ffffff",
"base-content": "#222737",
"info": "#563058",
"info-content": "#f8f5f1",
"success": "#7eb672",
"success-content": "#222737",
"warning": "#fba63a",
"warning-content": "#222737",
"error": "#D93226",
"error-content": "#222737",
}
}
],
},
plugins: [
daisyui
],
} satisfies Config;