From c1f5a7ce3738dcab7a53876f0f34ec955f520b8a Mon Sep 17 00:00:00 2001 From: Adam Ladachowski Date: Sat, 14 Feb 2026 03:14:53 +0100 Subject: [PATCH] Apply tengu.to color scheme and styling - Background: #0f0f0f - Cards: #1a1a1a with #333 borders - Accent: #4ade80 (green) for active/code - Primary button: #dc2626 (red) - Text: #e5e5e5, muted #888/#666 - Monospace font for prompts - 8px border-radius on all components Co-Authored-By: Claude Opus 4.5 --- tensors/server/static/index.html | 112 ++++++++++++++++++++----------- 1 file changed, 71 insertions(+), 41 deletions(-) diff --git a/tensors/server/static/index.html b/tensors/server/static/index.html index f7bc9e3..0b994a2 100644 --- a/tensors/server/static/index.html +++ b/tensors/server/static/index.html @@ -8,9 +8,9 @@ @@ -315,11 +343,13 @@ `).join(''); initLightbox(); + } else if (data.error) { + imagesDiv.innerHTML = `
${escapeHtml(data.error)}
`; } else { - imagesDiv.innerHTML = '
Generation failed
'; + imagesDiv.innerHTML = '
Generation failed
'; } } catch (e) { - msgDiv.querySelector('.chat-images').innerHTML = '
Error: ' + e.message + '
'; + msgDiv.querySelector('.chat-images').innerHTML = '
Error: ' + escapeHtml(e.message) + '
'; } generateBtn.disabled = false;