Detailed changes
@@ -32,7 +32,7 @@ pub fn refresh_matching_bracket_highlights(editor: &mut Editor, cx: &mut ViewCon
opening_range.to_anchors(&snapshot.buffer_snapshot),
closing_range.to_anchors(&snapshot.buffer_snapshot),
],
- |theme| theme.editor_document_highlight_read_background,
+ |theme| theme.editor_document_highlight_bracket_background,
cx,
)
}
@@ -80,6 +80,7 @@ impl ThemeColors {
editor_indent_guide_active: neutral().light_alpha().step_6(),
editor_document_highlight_read_background: neutral().light_alpha().step_3(),
editor_document_highlight_write_background: neutral().light_alpha().step_4(),
+ editor_document_highlight_bracket_background: green().light_alpha().step_5(),
terminal_background: neutral().light().step_1(),
terminal_foreground: black().light().step_12(),
terminal_bright_foreground: black().light().step_11(),
@@ -179,6 +180,7 @@ impl ThemeColors {
editor_indent_guide_active: neutral().dark_alpha().step_6(),
editor_document_highlight_read_background: neutral().dark_alpha().step_4(),
editor_document_highlight_write_background: neutral().dark_alpha().step_4(),
+ editor_document_highlight_bracket_background: green().dark_alpha().step_6(),
terminal_background: neutral().dark().step_1(),
terminal_ansi_background: neutral().dark().step_1(),
terminal_foreground: white().dark().step_12(),
@@ -102,6 +102,7 @@ pub(crate) fn one_dark() -> Theme {
0.2,
),
editor_document_highlight_write_background: gpui::red(),
+ editor_document_highlight_bracket_background: gpui::green(),
terminal_background: bg,
// todo("Use one colors for terminal")
@@ -413,6 +413,12 @@ pub struct ThemeColorsContent {
#[serde(rename = "editor.document_highlight.write_background")]
pub editor_document_highlight_write_background: Option<String>,
+ /// Highlighted brackets background color.
+ ///
+ /// Matching brackets in the cursor scope are highlighted with this background color.
+ #[serde(rename = "editor.document_highlight.bracket_background")]
+ pub editor_document_highlight_bracket_background: Option<String>,
+
/// Terminal background color.
#[serde(rename = "terminal.background")]
pub terminal_background: Option<String>,
@@ -540,6 +546,10 @@ impl ThemeColorsContent {
.border
.as_ref()
.and_then(|color| try_parse_color(color).ok());
+ let editor_document_highlight_read_background = self
+ .editor_document_highlight_read_background
+ .as_ref()
+ .and_then(|color| try_parse_color(color).ok());
ThemeColorsRefinement {
border,
border_variant: self
@@ -784,14 +794,17 @@ impl ThemeColorsContent {
.editor_indent_guide_active
.as_ref()
.and_then(|color| try_parse_color(color).ok()),
- editor_document_highlight_read_background: self
- .editor_document_highlight_read_background
- .as_ref()
- .and_then(|color| try_parse_color(color).ok()),
+ editor_document_highlight_read_background,
editor_document_highlight_write_background: self
.editor_document_highlight_write_background
.as_ref()
.and_then(|color| try_parse_color(color).ok()),
+ editor_document_highlight_bracket_background: self
+ .editor_document_highlight_bracket_background
+ .as_ref()
+ .and_then(|color| try_parse_color(color).ok())
+ // Fall back to `editor.document_highlight.read_background`, for backwards compatibility.
+ .or(editor_document_highlight_read_background),
terminal_background: self
.terminal_background
.as_ref()
@@ -171,6 +171,10 @@ pub struct ThemeColors {
/// special attention. Usually a document highlight is visualized by changing
/// the background color of its range.
pub editor_document_highlight_write_background: Hsla,
+ /// Highlighted brackets background color.
+ ///
+ /// Matching brackets in the cursor scope are highlighted with this background color.
+ pub editor_document_highlight_bracket_background: Hsla,
// ===
// Terminal