From b98d80dc4ec512cd6b892dc9f36d07a2acb45600 Mon Sep 17 00:00:00 2001 From: e4 Date: Tue, 6 Feb 2024 10:03:17 -0500 Subject: [PATCH] Fix cursorline Zed OneDark While updating the colors, accidentally broke the cursor line + picker line colors. Apologies! --- runtime/themes/zed_onedark.toml | 6 +++--- runtime/themes/zed_onelight.toml | 1 - 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/runtime/themes/zed_onedark.toml b/runtime/themes/zed_onedark.toml index 300b3c9c58d5..7ac1e73cc586 100644 --- a/runtime/themes/zed_onedark.toml +++ b/runtime/themes/zed_onedark.toml @@ -50,7 +50,7 @@ "ui.background" = { bg = "ui-text-reversed" } "ui.gutter" = { bg = "gray" } "ui.virtual" = { fg = "faint-gray" } -"ui.virtual.indent-guidje" = { fg = "faint-gray" } +"ui.virtual.indent-guide" = { fg = "faint-gray" } "ui.virtual.whitespace" = { fg = "light-gray" } "ui.virtual.ruler" = { bg = "gray" } "ui.virtual.inlay-hint" = { fg = "blue-gray", modifiers = ["bold"] } @@ -62,7 +62,7 @@ "ui.selection" = { bg = "faint-gray" } "ui.selection.primary" = { bg = "#293b5bff" } -"ui.cursorline.primary" = { bg = "black" } +"ui.cursorline.primary" = { bg = "gray" } "ui.highlight" = { bg = "gray" } "ui.highlight.frameline" = { bg = "#97202a" } @@ -77,7 +77,7 @@ "ui.statusline.select" = { fg = "black", bg = "purple" } "ui.text" = { fg = "ui-text" } -"ui.text.focus" = { fg = "white", bg = "black", modifiers = ["bold"] } +"ui.text.focus" = { fg = "white", bg = "gray", modifiers = ["bold"] } "ui.help" = { fg = "white", bg = "gray" } "ui.popup" = { bg = "gray" } diff --git a/runtime/themes/zed_onelight.toml b/runtime/themes/zed_onelight.toml index f3da116762c4..086fce34be47 100644 --- a/runtime/themes/zed_onelight.toml +++ b/runtime/themes/zed_onelight.toml @@ -36,7 +36,6 @@ inherits = "zed_onedark" "ui.window" = { fg = "dark-gray" } [palette] - yellow = "#dabb7e" red = "#d36151ff" orange = "#d3604fff"