-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathtailwind.config.ts
109 lines (109 loc) · 2.88 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
import plugin, { type Config } from "tailwindcss";
import { tailwindComponents } from "./scripts/tailwindComponents";
import daisyUi from "daisyui";
import typography from "@tailwindcss/typography";
import containerQueries from "@tailwindcss/container-queries";
export default {
content: ["./app/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
cursor: {
default: "url(/assets/cursors/black-default.png), default",
pointer: "url(/assets/cursors/black-hand.png) 7 2, pointer",
text: "url(/assets/cursors/beam.png) 4 10, text",
progress: "url(/assets/cursors/black-background.png), progress",
"not-allowed": "url(/assets/cursors/forbidden.png), not-allowed",
wait: "url(/assets/cursors/wait.gif), wait",
},
typography: (theme: any) => ({
DEFAULT: {
css: {
h1: {
color: theme("colors.gray.100"),
},
h2: {
color: theme("colors.gray.100"),
},
h3: {
color: theme("colors.gray.100"),
},
h4: {
color: theme("colors.gray.100"),
},
p: {
color: theme("colors.gray.100"),
},
strong: {
color: theme("colors.gray.100"),
},
li: {
color: theme("colors.gray.100"),
},
code: {
color: theme("colors.gray.400"),
},
a: {
color: theme("colors.primary"),
"&:hover": {
color: theme("colors.primary-highlight"),
},
},
},
},
}),
colors: {
primary: "#60a5fa",
"primary-focus": "#2563eb",
"primary-content": "#ffffff",
"primary-highlight": "#91c1fb",
secondary: "#718096",
"secondary-focus": "#2d3748",
"secondary-content": "#ffffff",
"secondary-highlight": "#8e9aab",
accent: "#37cdbe",
"accent-focus": "#2aa79b",
"accent-content": "#ffffff",
"accent-highlight": "#60d7cb",
neutral: "#3d4451",
"neutral-focus": "#2a2e37",
"neutral-content": "#ffffff",
"neutral-highlight": "#535c6e",
"base-100": "#ffffff",
"base-200": "#f9fafb",
"base-300": "#d1d5db",
"base-content": "#1f2937",
"base-highlight": "#314158",
info: "#319795",
"info-focus": "#285e61",
"info-content": "#ffffff",
"info-highlight": "#3dbdbb",
success: "#38a169",
"success-focus": "#276749",
"success-content": "#ffffff",
"success-highlight": "#4bc182",
warning: "#dd6b20",
"warning-focus": "#9c4221",
"warning-content": "#ffffff",
"warning-highlight": "#e5884b",
error: "#e53e3e",
"error-focus": "#9b2c2c",
"error-content": "#ffffff",
"error-highlight": "#eb6b6b",
notice: "#805ad5",
"notice-focus": "#553c9a",
"notice-content": "#ffffff",
"notice-highlight": "#9f83df",
"alert-color": "var(--alert-color, #60a5fa)",
},
},
},
variants: {
extend: {},
},
plugins: [daisyUi, typography, containerQueries],
daisyui: {
logs: false,
styled: false,
themes: [],
},
} satisfies Config;