Skip to content

Commit

Permalink
api chat window status message colors fixed for light theme
Browse files Browse the repository at this point in the history
  • Loading branch information
micz committed Sep 5, 2024
1 parent 56b5c47 commit ddf164f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion api_webchat/messageInput.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,13 +64,17 @@ messagesInputStyle .textContent = `
border: 1px solid lightgrey;
border-radius: 5px;
padding: 5px;
background: #212121;
background: #F2F2F2;
}
@media (prefers-color-scheme: dark) {
#messageInputField {
background-color: #303030;
color: #ffffff;
}
#statusLogger{
background: #212121;
color: #ffffff;
}
}
`;
messageInputTemplate.content.appendChild(messagesInputStyle);
Expand Down

0 comments on commit ddf164f

Please sign in to comment.