diff options
author | Travis Harmon | 2024-01-28 09:11:31 +0000 |
---|---|---|
committer | GitHub | 2024-01-28 09:11:31 +0000 |
commit | f0be0c6d4a6c253e258b977436144796b8bd086f (patch) | |
tree | 78e8103d3ac0518ff210406db43d9f5592e867c3 /runtime/themes | |
parent | 1616021a5a5378118678b57bca0ae844af5922ab (diff) |
Make status line modes bold for theme onedark (#9435)
* Make status line modes bold
* Revert change to onedarker
Diffstat (limited to 'runtime/themes')
-rw-r--r-- | runtime/themes/onedark.toml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/themes/onedark.toml b/runtime/themes/onedark.toml index a50b5d35..eae11172 100644 --- a/runtime/themes/onedark.toml +++ b/runtime/themes/onedark.toml @@ -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" } } |