ui: Tone down the preview highlight by adding a new scope

imgbot
Blaž Hrastnik 3 years ago
parent e6cb183134
commit bf5b9a9f35

@ -153,7 +153,10 @@ impl<T: 'static> Component for FilePicker<T> {
(end.saturating_sub(start) as u16 + 1)
.min(inner.height.saturating_sub(offset)),
),
cx.editor.theme.get("ui.selection"),
cx.editor
.theme
.try_get("ui.highlight")
.unwrap_or_else(|| cx.editor.theme.get("ui.selection")),
);
}
}

@ -51,6 +51,7 @@ module = "#ff0000"
"ui.cursor.insert" = { bg = "white" }
"ui.cursor.match" = { fg = "#212121", bg = "#6C6999" }
"ui.cursor" = { modifiers = ["reversed"] }
"ui.highlight" = { bg = "bossanova" }
"ui.menu.selected" = { fg = "revolver", bg = "white" }

Loading…
Cancel
Save