fix: use subtle gray background for user message highlight on dark terminals (#739)

Co-authored-by: Letta <noreply@letta.com>
This commit is contained in:
Charles Packer
2026-01-28 23:09:21 -08:00
committed by GitHub
parent fa5a7c3d74
commit 4627548829

View File

@@ -209,8 +209,8 @@ export const colors = {
get userMessage() {
const theme = getTerminalTheme();
return {
background: theme === "light" ? "#dcddf2" : "#ffffff", // light purple for light, white for dark
text: theme === "light" ? undefined : "#000000", // black text for dark terminals
background: theme === "light" ? "#dcddf2" : "#2d2d2d", // light purple for light, subtle gray for dark
text: undefined, // use default terminal text color
};
},
};