add missing symbol colours

This commit is contained in:
Matt Parker
2025-10-12 14:13:18 +10:00
parent 6cdc02ec99
commit 0d46c60e80

View File

@@ -165,12 +165,17 @@ public partial class CustomHighlighter : SyntaxHighlighter
"parameter name" => CachedColors.VariableBlue,
"local name" => CachedColors.VariableBlue,
"type parameter name" => CachedColors.ClassGreen,
"delegate name" => CachedColors.ClassGreen,
"event name" => CachedColors.White,
// Punctuation & operators
"operator" => CachedColors.White,
"operator - overloaded" => CachedColors.Yellow,
"punctuation" => CachedColors.White,
// Preprocessor
"preprocessor text" => CachedColors.White,
// Xml comments
"xml doc comment - delimiter" => CachedColors.CommentGreen,
"xml doc comment - name" => CachedColors.White,