New in version 0.1 but still undocumented is the ability to override the global botpress theme.
You'll need to migrate your bot to 0.1 (see the README for the migration guide) then create a new file at your bot's root directory called theme.scss
with this content inside.
Upon initialization, your bot should already have a theme.scss
file located at your bot's root directory.
Now you can edit the theme.scss
file and restart your bot to see the changes:
.bp-sidebar-header {
.bp-logo {
background-color: red;
}
}