Skip to content

Commit

Permalink
fix: use fg instead of bg
Browse files Browse the repository at this point in the history
  • Loading branch information
GreasySlug committed Apr 6, 2024
1 parent b2c9ba3 commit 40e7b87
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
4 changes: 3 additions & 1 deletion runtime/themes/base16_transparent.toml
Expand Up @@ -5,7 +5,9 @@
"ui.background.separator" = { fg = "gray" }
"ui.text" = { fg = "light-gray" }
"ui.text.focus" = { fg = "white" }
"ui.virtual.jump-label" = { modifiers = ["reversed", "bold"] }
"ui.virtual.jump-label" = { fg = "blue", modifiers = [
"bold",
], underline = { color = "blue", style = "line" } }
"ui.menu" = { fg = "white" }
"ui.menu.selected" = { modifiers = ["reversed"] }
"ui.menu.scroll" = { fg = "light-gray" }
Expand Down
6 changes: 3 additions & 3 deletions runtime/themes/dark_high_contrast.toml
Expand Up @@ -8,10 +8,10 @@
"ui.text" = "white"
"ui.text.focus" = { modifiers = ["reversed"] } # file picker selected

"ui.virtual" = "gray"
"ui.virtual.jump-label" = { fg = "deep_red", bg = "yellow", modifiers = [
"ui.virtual.jump-label" = { fg = "deep_red", modifiers = [
"bold",
] }
], underline = { color = "deep_red", style = "line" } }
"ui.virtual" = "gray"
"ui.virtual.whitespace" = "gray"
"ui.virtual.ruler" = { fg = "white", bg = "gray" }
"ui.virtual.indent-guide" = "white"
Expand Down

0 comments on commit 40e7b87

Please sign in to comment.