Files
owlen/themes/rose-pine.toml
vikingowl 55e6b0583d feat(ui): add configurable role label display and syntax highlighting support
- 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.
2025-10-12 16:44:53 +02:00

31 lines
815 B
TOML

name = "rose-pine"
text = "#e0def4"
background = "#191724"
focused_panel_border = "#eb6f92"
unfocused_panel_border = "#26233a"
user_message_role = "#31748f"
assistant_message_role = "#9ccfd8"
tool_output = "#6e6a86"
thinking_panel_title = "#c4a7e7"
command_bar_background = "#26233a"
status_background = "#26233a"
mode_normal = "#9ccfd8"
mode_editing = "#ebbcba"
mode_model_selection = "#f6c177"
mode_provider_selection = "#31748f"
mode_help = "#c4a7e7"
mode_visual = "#eb6f92"
mode_command = "#f6c177"
selection_bg = "#403d52"
selection_fg = "#e0def4"
cursor = "#eb6f92"
code_block_background = "#26233a"
code_block_border = "#eb6f92"
code_block_text = "#e0def4"
code_block_keyword = "#f6c177"
code_block_string = "#9ccfd8"
code_block_comment = "#6e6a86"
placeholder = "#6e6a86"
error = "#eb6f92"
info = "#9ccfd8"