From 4be422a7c1677d28be77041daf87c2e0e7809ec9 Mon Sep 17 00:00:00 2001 From: Jesus Gonzalez Date: Mon, 6 Nov 2023 16:26:14 -0300 Subject: [PATCH 1/2] Add more accurate to official theme type hightlighting to Darcula themes. --- runtime/themes/darcula.toml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/runtime/themes/darcula.toml b/runtime/themes/darcula.toml index 3086b727f1db..0ce092797539 100644 --- a/runtime/themes/darcula.toml +++ b/runtime/themes/darcula.toml @@ -35,7 +35,11 @@ "constant.numeric" = "lightblue" "constant.character.escape" = "white" "attribute" = "yellow" -"type" = "orange" +"type" = "white" +"type.builtin" = "orange" +"type.parameter" = { fg = "white", modifiers = ["bold"] } +"type.enum" = "darkred" +"type.enum.variant" = "orange" "string" = "darkgreen" "function" = "yellow" "function.macro" = "green" From 5e44102faf182fe9959ce29a298e5785bacad705 Mon Sep 17 00:00:00 2001 From: Jesus Gonzalez Date: Mon, 6 Nov 2023 16:30:07 -0300 Subject: [PATCH 2/2] Fix type.enum color for Darcula themes. --- runtime/themes/darcula.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/themes/darcula.toml b/runtime/themes/darcula.toml index 0ce092797539..49546374427f 100644 --- a/runtime/themes/darcula.toml +++ b/runtime/themes/darcula.toml @@ -38,7 +38,7 @@ "type" = "white" "type.builtin" = "orange" "type.parameter" = { fg = "white", modifiers = ["bold"] } -"type.enum" = "darkred" +"type.enum" = "white" "type.enum.variant" = "orange" "string" = "darkgreen" "function" = "yellow"