Skip to content

Commit

Permalink
Make status line modes bold for theme onedark (helix-editor#9435)
Browse files Browse the repository at this point in the history
* Make status line modes bold

* Revert change to onedarker
  • Loading branch information
twharmon authored and Schuyler Mortimer committed Jul 10, 2024
1 parent f2c83a1 commit 92d78ea
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions runtime/themes/onedark.toml
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,9 @@

"ui.statusline" = { fg = "white", bg = "light-black" }
"ui.statusline.inactive" = { fg = "light-gray", bg = "light-black" }
"ui.statusline.normal" = { fg = "light-black", bg = "blue" }
"ui.statusline.insert" = { fg = "light-black", bg = "green" }
"ui.statusline.select" = { fg = "light-black", bg = "purple" }
"ui.statusline.normal" = { fg = "light-black", bg = "blue", modifiers = ["bold"] }
"ui.statusline.insert" = { fg = "light-black", bg = "green", modifiers = ["bold"] }
"ui.statusline.select" = { fg = "light-black", bg = "purple", modifiers = ["bold"] }

"ui.bufferline" = { fg = "light-gray", bg = "light-black" }
"ui.bufferline.active" = { fg = "light-black", bg = "blue", underline = { color = "light-black", style = "line" } }
Expand Down

0 comments on commit 92d78ea

Please sign in to comment.