π¨Customising styling
How to make the look and feel of Trialogue your own

Changing UI colours
Setting speaker avatars and colours
Last updated
How to make the look and feel of Trialogue your own

Last updated
:root {
--bg-color: #C7BDB5;
--user-color: purple;
--speaker-color: #A00;
--sidebar-bg-color: #FFF;
--navbar-bg-color: #FFF;
--passage-bg-color: #FFF;
--passage-text-color: #000;
}.chat-passage-wrapper[data-speaker='bot']:before {
background-image: url('https://placekitten.com/100/100');
}
.chat-passage-wrapper[data-speaker='bot'] .chat-passage::before {
color: green;
}.chat-passage-wrapper[data-speaker='you']:after {
background-image: url('https://placekitten.com/100/100');
}
.chat-passage-wrapper[data-speaker='you'] .chat-passage::before {
color: red;
}