1
1
mirror of https://github.com/wez/wezterm.git synced 2024-11-22 13:16:39 +03:00

term: change default selection fg/bg to translucent purplish color

I think this looks less jarring than the yellowish selection color,
and the translucency looks nicer than changing the fg color completely
black as it did previously.
This commit is contained in:
Wez Furlong 2022-04-05 07:47:32 -07:00
parent 9ee2d0f6b2
commit 713d9e0124

View File

@ -171,8 +171,8 @@ impl ColorPalette {
let cursor_border = RgbColor::new_8bpc(0x52, 0xad, 0x70);
let cursor_fg = colors[AnsiColor::Black as usize];
let selection_fg = colors[AnsiColor::Black as usize].into();
let selection_bg = RgbColor::new_8bpc(0xff, 0xfa, 0xcd).into();
let selection_fg = SrgbaTuple(0., 0., 0., 0.);
let selection_bg = SrgbaTuple(0.5, 0.4, 0.6, 0.5);
let scrollbar_thumb = RgbColor::new_8bpc(0x22, 0x22, 0x22);
let split = RgbColor::new_8bpc(0x44, 0x44, 0x44);