From f6a7aa6c962331c914c113bf40759714ef6237bd Mon Sep 17 00:00:00 2001 From: Debanjum Singh Solanky Date: Tue, 20 Jun 2023 01:10:16 -0700 Subject: [PATCH] Style Khoj chat on web interface with new lantern theme - Color khoj chat message with new yellow theme color - Update Khoj chat emoji to lantern - Add page type to title of pages on web interface --- src/khoj/interface/web/chat.html | 16 ++++++++++------ src/khoj/interface/web/index.html | 2 +- 2 files changed, 11 insertions(+), 7 deletions(-) diff --git a/src/khoj/interface/web/chat.html b/src/khoj/interface/web/chat.html index ed9d7d03..7e70c4a3 100644 --- a/src/khoj/interface/web/chat.html +++ b/src/khoj/interface/web/chat.html @@ -2,7 +2,7 @@ - Khoj + Khoj - Chat @@ -25,7 +25,7 @@ function renderMessage(message, by, dt=null) { let message_time = formatDate(dt ?? new Date()); - let by_name = by == "khoj" ? "🦅 Khoj" : "🤔 You"; + let by_name = by == "khoj" ? "🏮 Khoj" : "🤔 You"; // Generate HTML for Chat Message and Append to Chat Body document.getElementById("chat-body").innerHTML += `
@@ -118,6 +118,10 @@