Install Helix and configure it to match light terminal theme.
brew install helixmkdir -p ~/.config/helix
cat > ~/.config/helix/config.toml << 'TOML'
theme = "onelight"
[editor]
line-number = "relative"
cursorline = true
color-modes = true
bufferline = "multiple"
[editor.cursor-shape]
insert = "bar"
normal = "block"
select = "underline"
[editor.file-picker]
hidden = false
TOMLhx ~/.config/helix/config.tomlShould show light theme matching your terminal.
If onelight doesn't match perfectly, try:
theme = "github_light"theme = "gruvbox_light"theme = "papercolor-light"
Edit ~/.config/helix/config.toml and change the theme line.