diff --git a/gpt4all-chat/qml/ChatView.qml b/gpt4all-chat/qml/ChatView.qml index 0b52d3fa..53bda055 100644 --- a/gpt4all-chat/qml/ChatView.qml +++ b/gpt4all-chat/qml/ChatView.qml @@ -891,7 +891,13 @@ Rectangle { text: value + references anchors.horizontalCenter: listView.contentItem.horizontalCenter width: Math.min(1280, listView.contentItem.width) - color: theme.textColor + color: { + if (!currentChat.isServer) + return theme.textColor + if (name === qsTr("Response: ")) + return theme.white + return theme.black + } wrapMode: Text.WordWrap textFormat: TextEdit.PlainText focus: false