1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-25 02:58:02 +02:00

Added IDE colorization: Member, Local, Parameter

This commit is contained in:
Brian Fiete 2024-12-02 07:39:17 -05:00
parent ba436231cb
commit 2b9fa80b81
6 changed files with 74 additions and 7 deletions

View file

@ -785,8 +785,11 @@ namespace IDE.ui
0xFFFFFFFF, // Normal
0xFFE1AE9A, // Keyword
0XFFC8A0FF, // Literal
0xFF75715E, // Comment
0xFFFFFFFF, // Identifier
0xFF75715E, // Comment
0xFFFFFFFF, // Local
0xFFFFFFFF, // Parameter
0xFFFFFFFF, // Member
0xFFA6E22A, // Method
0xFF66D9EF, // Type
0xFF66D9EF, // PrimitiveType

View file

@ -26,8 +26,11 @@ namespace IDE.ui
Normal,
Keyword,
Literal,
Comment,
Identifier,
Comment,
Local,
Parameter,
Member,
Method,
Type,
PrimitiveType,