feat: Use typewriter theme for cristo and make suggestion buttons smaller
All checks were successful
BotUI CI / build (push) Successful in 4m31s

- Change cristo bot default theme from mellowgold to typewriter
- Reduce suggestion button size: padding 6px 12px (was 10px 18px)
- Reduce font size to 12px (was 14px)
- Reduce min-height to 30px (was 40px)
- Reduce border-radius to 20px (was 24px)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
Rodrigo Rodriguez 2026-02-15 23:48:40 +00:00
parent cbbcc58ad7
commit f0aba607e9
2 changed files with 6 additions and 6 deletions

View file

@ -549,18 +549,18 @@ footer {
.suggestion-chip,
.suggestion-button {
padding: 10px 18px;
border-radius: 24px;
padding: 6px 12px;
border-radius: 20px;
border: 2px solid var(--chat-color1, var(--suggestion-color, #4a9eff));
background: var(--chat-color2, rgba(255, 255, 255, 0.15));
color: var(--chat-color1, #ffffff);
font-size: 14px;
font-size: 12px;
font-weight: 600;
cursor: pointer;
transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
overflow: hidden;
min-height: 40px;
min-height: 30px;
display: inline-flex;
align-items: center;
justify-content: center;

View file

@ -7,8 +7,8 @@ const ThemeManager = (() => {
const botThemeMap = {
// Default bot uses light theme with brown accents
"default": "light",
// Cristo bot uses mellowgold theme with earth tones (perfect for sanctuary/church)
"cristo": "mellowgold",
// Cristo bot uses typewriter theme (classic typewriter style)
"cristo": "typewriter",
// Salesianos bot uses light theme with blue accents
"salesianos": "light",
};