MIRROR: javascript for ๐Ÿœ's, a tiny runtime with big ambitions
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

undefined/null too dark

+4 -4
+4 -4
src/highlight.c
··· 683 683 684 684 static const char *class_to_crvar(hl_token_class cls) { 685 685 switch (cls) { 686 - case HL_NUMBER: return "yellow"; 687 - case HL_BOOLEAN: return "magenta"; 688 - 686 + case HL_NUMBER: return "yellow"; 687 + case HL_BOOLEAN: return "magenta"; 688 + case HL_LITERAL_NULL: return "gray"; 689 + 689 690 case HL_STRING: return "#FF8A7F"; 690 691 case HL_STRING_DELIMITER: return "#FF7265"; 691 692 case HL_STRING_ESCAPE: return "#F4AAA3"; ··· 703 704 case HL_TYPE: return "#59D8F1"; 704 705 case HL_TYPE_STRING: return "#30E8AA"; 705 706 case HL_TYPE_BOOLEAN: return "#30E8AA"; 706 - case HL_LITERAL_NULL: return "#242628"; 707 707 case HL_COMMENT: return "#758CA3"; 708 708 case HL_FUNCTION_NAME: return "#30E8AA"; 709 709 case HL_FUNCTION: return "#30E8AA";