forked from lfglabs-dev/graphgpt.app
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
138 lines (136 loc) · 4.27 KB
/
tailwind.config.ts
File metadata and controls
138 lines (136 loc) · 4.27 KB
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
import type { Config } from "tailwindcss";
// Fantasy-emerald leaning palette (aligned with thread vibe)
const primary = "#047857"; // emerald-700 (keeps good contrast with white text)
const background = "#fbfaf6"; // warm parchment-white
const light = "#d1fae5"; // subtle emerald tint for light button variant
const config: Config = {
darkMode: "media",
content: [
"./app/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./app/components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
"./app/lib/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
primary,
background,
white: "#ffffff",
light,
"text-secondary-light": "#707069",
"text-secondary-semi-light": "#5c5c55",
"text-secondary": "#483c33",
"text-secondary-dark": "#20201d",
text: "#141413",
},
fontFamily: {
handwriting: ["var(--font-handwriting)", "cursive"],
},
typography: () => ({
DEFAULT: {
css: {
blockquote: {
borderLeftColor: primary,
},
"ul > li::marker": {
color: "var(--foreground)",
},
color: "var(--foreground)",
h2: {
color: "var(--foreground)",
},
strong: {
color: "var(--foreground)",
},
},
},
}),
keyframes: {
hide: {
from: { opacity: "1" },
to: { opacity: "0" },
},
slideDownAndFade: {
from: { opacity: "0", transform: "translateY(-6px)" },
to: { opacity: "1", transform: "translateY(0)" },
},
slideLeftAndFade: {
from: { opacity: "0", transform: "translateX(6px)" },
to: { opacity: "1", transform: "translateX(0)" },
},
slideUpAndFade: {
from: { opacity: "0", transform: "translateY(6px)" },
to: { opacity: "1", transform: "translateY(0)" },
},
slideRightAndFade: {
from: { opacity: "0", transform: "translateX(-6px)" },
to: { opacity: "1", transform: "translateX(0)" },
},
accordionOpen: {
from: { height: "0px" },
to: { height: "var(--radix-accordion-content-height)" },
},
accordionClose: {
from: {
height: "var(--radix-accordion-content-height)",
},
to: { height: "0px" },
},
dialogOverlayShow: {
from: { opacity: "0" },
to: { opacity: "1" },
},
dialogContentShow: {
from: {
opacity: "0",
transform: "translate(-50%, -45%) scale(0.95)",
},
to: { opacity: "1", transform: "translate(-50%, -50%) scale(1)" },
},
"slide-up-fade": {
from: {
opacity: "0",
transform: "translateY(12px)",
},
to: {
opacity: "1",
transform: "translateY(0px)",
},
},
"slide-down-fade": {
from: {
opacity: "0",
transform: "translateY(-26px)",
},
to: {
opacity: "1",
transform: "translateY(0px)",
},
},
},
animation: {
hide: "hide 150ms cubic-bezier(0.16, 1, 0.3, 1)",
slideDownAndFade:
"slideDownAndFade 150ms cubic-bezier(0.16, 1, 0.3, 1)",
slideLeftAndFade:
"slideLeftAndFade 150ms cubic-bezier(0.16, 1, 0.3, 1)",
slideUpAndFade: "slideUpAndFade 150ms cubic-bezier(0.16, 1, 0.3, 1)",
slideRightAndFade:
"slideRightAndFade 150ms cubic-bezier(0.16, 1, 0.3, 1)",
// Accordion
accordionOpen: "accordionOpen 150ms cubic-bezier(0.87, 0, 0.13, 1)",
accordionClose: "accordionClose 150ms cubic-bezier(0.87, 0, 0.13, 1)",
// Dialog
dialogOverlayShow:
"dialogOverlayShow 150ms cubic-bezier(0.16, 1, 0.3, 1)",
dialogContentShow:
"dialogContentShow 150ms cubic-bezier(0.16, 1, 0.3, 1)",
"slide-down-fade": "slide-down-fade ease-in-out",
"slide-up-fade": "slide-up-fade ease-in-out",
},
},
},
plugins: [require("@tailwindcss/forms"), require("@tailwindcss/typography")],
};
export default config;