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

@ -2,6 +2,35 @@
@import '../../utils/fonts.less';
@import '../../utils/spacing.less';
.theme-light {
.daggerheart.chat.action {
.action-move .action-section {
border-bottom: 1px solid @dark-blue;
&:hover {
background: @dark-blue-10;
}
.action-header {
.title {
color: @dark-blue;
}
.label {
color: @dark;
}
}
.fa-chevron-down {
color: @dark-blue;
}
}
.description {
color: @dark;
}
}
}
.daggerheart.chat {
&.action {
display: flex;
@ -34,7 +63,7 @@
border-bottom: 1px solid @golden;
&:hover {
background: light-dark(@dark-blue-10, @golden-10);
background: @golden-10;
cursor: pointer;
transition: all 0.3s ease;
}