- Introduce `RoleLabelDisplay` enum (inline, above, none) and integrate it into UI rendering and message formatting. - Replace `show_role_labels` boolean with `role_label_mode` across config, formatter, session, and TUI components. - Add `syntax_highlighting` boolean to UI settings with default `false` and support in message rendering. - Update configuration schema version to 1.3.0 and provide deserialization handling for legacy boolean values. - Extend theme definitions with code block styling fields (background, border, text, keyword, string, comment) and default values in `Theme`. - Adjust related modules (`formatting.rs`, `ui.rs`, `session.rs`, `chat_app.rs`) to use the new settings and theme fields.
31 lines
813 B
TOML
31 lines
813 B
TOML
name = "gruvbox"
|
|
text = "#ebdbb2"
|
|
background = "#282828"
|
|
focused_panel_border = "#fe8019"
|
|
unfocused_panel_border = "#7c6f64"
|
|
user_message_role = "#b8bb26"
|
|
assistant_message_role = "#83a598"
|
|
tool_output = "#928374"
|
|
thinking_panel_title = "#d3869b"
|
|
command_bar_background = "#3c3836"
|
|
status_background = "#3c3836"
|
|
mode_normal = "#83a598"
|
|
mode_editing = "#b8bb26"
|
|
mode_model_selection = "#fabd2f"
|
|
mode_provider_selection = "#8ec07c"
|
|
mode_help = "#d3869b"
|
|
mode_visual = "#fe8019"
|
|
mode_command = "#fabd2f"
|
|
selection_bg = "#504945"
|
|
selection_fg = "#ebdbb2"
|
|
cursor = "#fe8019"
|
|
code_block_background = "#3c3836"
|
|
code_block_border = "#7c6f64"
|
|
code_block_text = "#ebdbb2"
|
|
code_block_keyword = "#fabd2f"
|
|
code_block_string = "#8ec07c"
|
|
code_block_comment = "#7c6f64"
|
|
placeholder = "#665c54"
|
|
error = "#fb4934"
|
|
info = "#b8bb26"
|