From 0b52ff270aa2c022dcd9e934ce451d1b2fa382e3 Mon Sep 17 00:00:00 2001 From: linbingquan <695601626@qq.com> Date: Fri, 18 Jul 2025 22:50:36 +0800 Subject: [PATCH] themes: Add `fg = "light-gray"` for `ui.linenr` in `base16_transparent` --- runtime/themes/base16_transparent.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/runtime/themes/base16_transparent.toml b/runtime/themes/base16_transparent.toml index fc697b920..3ef60e1be 100644 --- a/runtime/themes/base16_transparent.toml +++ b/runtime/themes/base16_transparent.toml @@ -8,8 +8,8 @@ "ui.menu" = { fg = "white" } "ui.menu.selected" = { modifiers = ["reversed"] } "ui.menu.scroll" = { fg = "light-gray" } -"ui.linenr" = { modifiers = ["dim"] } -"ui.linenr.selected" = { fg = "white", modifiers = ["bold"] } +"ui.linenr" = { fg = "light-gray", modifiers = ["dim"] } +"ui.linenr.selected" = { fg = "white", modifiers = ["bold"] } "ui.popup" = { fg = "white" } "ui.window" = { fg = "gray" } "ui.selection" = { bg = "gray" } @@ -42,7 +42,7 @@ "constant" = "yellow" "attribute" = "yellow" "type" = "light-yellow" -"string" = "light-green" +"string" = "light-green" "variable.other.member" = "green" "constant.character.escape" = "light-cyan" "function" = "light-blue"