add light theme for chat messages (#1016)

This commit is contained in:
Murilo Brito 2025-08-20 05:14:46 -03:00 committed by GitHub
parent af250d7a61
commit 7a6bbe3488
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 231 additions and 27 deletions

View file

@ -7,6 +7,15 @@
#chat-notifications .chat-log {
.chat-message {
background-image: url('../assets/parchments/dh-parchment-light.png');
.message-header .message-header-metadata .message-metadata,
.message-header .message-header-main .message-sub-header-container {
color: @dark;
}
.message-header .message-header-main .message-sub-header-container h4 {
color: @dark-blue;
}
}
}
}
@ -36,7 +45,7 @@
.message-metadata {
font-family: @font-body;
color: light-dark(@dark, @beige);
color: @beige;
}
}
@ -59,14 +68,14 @@
display: flex;
flex-direction: column;
justify-content: space-between;
color: light-dark(@dark, @beige);
color: @beige;
h4 {
font-size: 16px;
font-weight: bold;
margin-bottom: 0;
font-family: @font-subtitle;
color: light-dark(@dark-blue, @golden);
color: @golden;
}
}
}