-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
43 lines (43 loc) · 1.06 KB
/
tailwind.config.js
File metadata and controls
43 lines (43 loc) · 1.06 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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
"./node_modules/streamdown/dist/**/*.js",
],
theme: {
extend: {
fontFamily: {
sans: [
"-apple-system",
"BlinkMacSystemFont",
"SF Pro Display",
"SF Pro Text",
"Helvetica Neue",
"sans-serif",
],
},
colors: {
glass: {
light: "rgba(255, 255, 255, 0.08)",
border: "rgba(255, 255, 255, 0.15)",
highlight: "rgba(255, 255, 255, 0.25)",
},
},
backdropBlur: {
glass: "40px",
},
animation: {
"pulse-slow": "pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite",
glow: "glow 2s ease-in-out infinite alternate",
},
keyframes: {
glow: {
"0%": { boxShadow: "0 0 5px rgba(59, 130, 246, 0.5)" },
"100%": { boxShadow: "0 0 20px rgba(59, 130, 246, 0.8)" },
},
},
},
},
plugins: [require("@tailwindcss/typography")],
};