mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 03:17:45 +03:00
Historically we haven't wanted to add light/dark mode since it required platform-specific dependencies. The Contour terminal [proposed] a VT extension to query for the current mode and subscribe to future changes, however, which can be supported squarely in Crossterm with no new deps. Currently at least Contour, Kitty and Ghostty support this on the terminal emulator side and Neovim on the client side. This patch allows configuring multiple themes: # this is still accepted: # theme = "ayu_dark" theme = { dark = "ayu_dark", light = "ayu_light" } On startup we query the terminal for the current mode and choose that theme. We then receive events from crossterm whenever the terminal changes theme. [proposed]: https://github.com/contour-terminal/contour/blob/master/docs/vt-extensions/color-palette-update-notifications.md |
||
---|---|---|
.. | ||
src | ||
tests | ||
.gitignore | ||
build.rs | ||
Cargo.toml |