1
0
Fork 0
mirror of https://github.com/helix-editor/helix synced 2024-04-30 09:15:08 +02:00

Add bufferline and cursorline colors to vim dark theme (#10444)

This commit is contained in:
Sufian 2024-04-15 20:08:55 +05:00 committed by GitHub
parent 9df1266376
commit 1245760595
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,7 +1,10 @@
"ui.background" = { bg = "black" }
"ui.bufferline" = { bg = "black" }
"ui.bufferline.active" = { fg = "light-magenta", bg = "dark-magenta" }
"ui.cursor" = { fg = "green", modifiers = ["reversed"] }
"ui.cursor.match" = { fg = "light-cyan", bg = "dark-cyan" }
"ui.cursor.primary" = { fg = "light-green", modifiers = ["reversed"] }
"ui.cursorline.primary" = { bg = "gray" }
"ui.menu" = { bg = "dark-white" }
"ui.menu.selected" = { fg = "yellow" }
"ui.popup" = { bg = "dark-white" }
@ -50,6 +53,7 @@
black = "#000000"
red = "#ed5f74"
green = "#1ea672"
gray = "#111111"
yellow = "#d97917"
blue = "#688ef1"
magenta = "#c96ed0"