diff options
author | Ben Lee-Cohen | 2022-05-24 18:54:08 +0000 |
---|---|---|
committer | Michael Davis | 2022-05-25 14:54:20 +0000 |
commit | 7160e745f72e5d742e19fecf9a7e78f32e5b34da (patch) | |
tree | 7b37abb390bee30b9c9604515c7640d6d3c00151 /runtime/themes | |
parent | 82da9bd4f28cd2a050222173d6429478bed5b3cb (diff) |
Changing Macro color to avoid color confusion
I noticed that in Rust, `println!`being a macro, it matched the color of string literals. This was visually confusing to me, so I checked what the nvim catpuccin theme (https://github.com/catppuccin/nvim) does. While it is pretty different, it does use different colors for strings and all function types: https://share.cleanshot.com/RLG2y1
I don't know if blue or red makes more sense given the other syntax choices, but wanted to propose this change cc @IsotoxalDev
Diffstat (limited to 'runtime/themes')
-rw-r--r-- | runtime/themes/catpuccin.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/themes/catpuccin.toml b/runtime/themes/catpuccin.toml index 1b27eaef..f7f11327 100644 --- a/runtime/themes/catpuccin.toml +++ b/runtime/themes/catpuccin.toml @@ -14,7 +14,7 @@ type = "blue" "type.builtin" = "white" constructor = "blue" function = "red" -"function.macro" = "green" +"function.macro" = "blue" "function.builtin" = "blue" tag = "peach" comment = "gray_1" |