Make status line modes bold (#9449)

This commit is contained in:
Chirikumbrah 2024-01-28 12:11:05 +03:00 committed by GitHub
parent 0d09fb4f55
commit 1616021a5a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -81,9 +81,9 @@
"ui.selection" = { bg = "selection" } "ui.selection" = { bg = "selection" }
"ui.statusline" = { fg = "foreground", bg = "darker" } "ui.statusline" = { fg = "foreground", bg = "darker" }
"ui.statusline.inactive" = { fg = "comment", bg = "darker" } "ui.statusline.inactive" = { fg = "comment", bg = "darker" }
"ui.statusline.normal" = { fg = "black", bg = "purple" } "ui.statusline.normal" = { fg = "black", bg = "purple", modifiers = ["bold"] }
"ui.statusline.insert" = { fg = "black", bg = "green" } "ui.statusline.insert" = { fg = "black", bg = "green", modifiers = ["bold"] }
"ui.statusline.select" = { fg = "black", bg = "cyan" } "ui.statusline.select" = { fg = "black", bg = "cyan", modifiers = ["bold"] }
"ui.text" = { fg = "foreground" } "ui.text" = { fg = "foreground" }
"ui.text.focus" = { fg = "cyan" } "ui.text.focus" = { fg = "cyan" }
"ui.window" = { fg = "foreground" } "ui.window" = { fg = "foreground" }
@ -133,3 +133,4 @@ green = "#50fa7b"
purple = "#BD93F9" purple = "#BD93F9"
cyan = "#8be9fd" cyan = "#8be9fd"
pink = "#ff79c6" pink = "#ff79c6"