Kanagawa: add cursor to dark mode (fixes #1528)

This commit is contained in:
Lysec
2026-01-24 11:46:16 +01:00
parent 3314e01fc6
commit 9492872034
2 changed files with 4 additions and 2 deletions
+1 -1
View File
@@ -58,7 +58,7 @@ class TerminalColors:
# Base colors
foreground = data["foreground"]
background = data["background"]
cursor = data["cursor"]
cursor = data.get("cursor", foreground)
cursor_text = data.get("cursorText", background)
selection_fg = data.get("selectionFg", foreground)
selection_bg = data.get("selectionBg", "#585b70")