feat: Use typewriter theme for cristo and make suggestion buttons smaller
All checks were successful
BotUI CI / build (push) Successful in 4m31s
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:
parent
cbbcc58ad7
commit
f0aba607e9
2 changed files with 6 additions and 6 deletions
|
|
@ -549,18 +549,18 @@ footer {
|
||||||
|
|
||||||
.suggestion-chip,
|
.suggestion-chip,
|
||||||
.suggestion-button {
|
.suggestion-button {
|
||||||
padding: 10px 18px;
|
padding: 6px 12px;
|
||||||
border-radius: 24px;
|
border-radius: 20px;
|
||||||
border: 2px solid var(--chat-color1, var(--suggestion-color, #4a9eff));
|
border: 2px solid var(--chat-color1, var(--suggestion-color, #4a9eff));
|
||||||
background: var(--chat-color2, rgba(255, 255, 255, 0.15));
|
background: var(--chat-color2, rgba(255, 255, 255, 0.15));
|
||||||
color: var(--chat-color1, #ffffff);
|
color: var(--chat-color1, #ffffff);
|
||||||
font-size: 14px;
|
font-size: 12px;
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
|
transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
|
||||||
position: relative;
|
position: relative;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
min-height: 40px;
|
min-height: 30px;
|
||||||
display: inline-flex;
|
display: inline-flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
|
|
|
||||||
|
|
@ -7,8 +7,8 @@ const ThemeManager = (() => {
|
||||||
const botThemeMap = {
|
const botThemeMap = {
|
||||||
// Default bot uses light theme with brown accents
|
// Default bot uses light theme with brown accents
|
||||||
"default": "light",
|
"default": "light",
|
||||||
// Cristo bot uses mellowgold theme with earth tones (perfect for sanctuary/church)
|
// Cristo bot uses typewriter theme (classic typewriter style)
|
||||||
"cristo": "mellowgold",
|
"cristo": "typewriter",
|
||||||
// Salesianos bot uses light theme with blue accents
|
// Salesianos bot uses light theme with blue accents
|
||||||
"salesianos": "light",
|
"salesianos": "light",
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue