aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordylrich2023-04-16 15:05:25 +0000
committerPascal Kuthe2023-04-16 16:32:56 +0000
commit523e9e457305d055cdbca1b21dab089002c93ffc (patch)
tree70c8f8eb01a963997d585e817ffb701ea676990d
parent99a8b6159cef76acb0bb0a9a872a36155e8cf6cd (diff)
ferra: fix ruler overriding foreground style
Ferra's current ruler styling overrides the foreground style, which is an odd look only for characters in the ruler column. This commit removes the foreground styling for the ruler rule. This is more in line with what other themes do for the ruler.
-rw-r--r--runtime/themes/ferra.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/themes/ferra.toml b/runtime/themes/ferra.toml
index da5339e2..360ad02f 100644
--- a/runtime/themes/ferra.toml
+++ b/runtime/themes/ferra.toml
@@ -52,7 +52,7 @@
"ui.selection.primary" = { bg = "ferra_night", fg = "ferra_umber" }
"ui.virtual" = { fg = "ferra_bark" }
"ui.virtual.whitespace" = { fg = "ferra_bark" }
-"ui.virtual.ruler" = { fg = "ferra_night", bg = "ferra_ash" }
+"ui.virtual.ruler" = { bg = "ferra_ash" }
"ui.virtual.indent-guide" = { fg = "ferra_ash" }
"ui.virtual.inlay-hint" = { fg = "ferra_bark" }