chore: remove gradient colors for text preview

This was competing visually with other previews.
This commit is contained in:
talksik
2026-03-12 07:32:20 -07:00
parent 9a19bba130
commit 0bafc3d858
+1 -1
View File
@@ -49,7 +49,7 @@ function TextPreview({ particle }: { particle: StreamParticle }) {
// only show x first chars for preview, to avoid overflow and also to determine text size
const truncated = data.content.length > 30 ? data.content.slice(0, 30) + "..." : data.content;
return (
<div className="flex h-full w-full items-center justify-center bg-gradient-to-br from-black-500/15 to-indigo-500/15 p-4">
<div className="flex h-full w-full items-center justify-center p-4">
<p
className={cn(
"line-clamp-4 text-center leading-relaxed text-4xl",