Improved syntax highlighting

This commit is contained in:
dylan
2023-05-06 12:05:02 -07:00
parent 7bf0838e4e
commit 60542b63c0
3 changed files with 17 additions and 8 deletions

View File

@ -5,15 +5,15 @@ const colors = {
RED: [1, 0, 0],
YELLOW: [1, 1, 0],
GREEN: [0, 1, 0],
BLUE: [0, 0, 1],
DARKBLUE: [0.1, 0.05, 0.4],
BLUE: [0.1, 0.5, 1],
DARKBLUE: [0.05, 0.1, 0.3],
BROWN: [0.6, 0.5, 0.4],
GRAY: [0.5, 0.5, 0.5],
PURPLE: [0.7, 0.1, 0.85],
ORANGE: [0.95, 0.75, 0.25],
CYAN: [0, 0.9, 0.9],
LIGHTGRAY: [0.75, 0.75, 0.75],
REDDISH: [0.7, 1, 0.5],
REDDISH: [216/255, 59/255, 113/255],
DARKGREEN: [0, 0.6, 0.2],
} as const;