From 31230522371766664e2e43913889914c06b791df Mon Sep 17 00:00:00 2001 From: Shadowfacts Date: Wed, 18 Oct 2023 21:55:32 -0400 Subject: [PATCH] Fix boolean literals not being highlighted --- site/css/syntax-highlighting.scss | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/site/css/syntax-highlighting.scss b/site/css/syntax-highlighting.scss index 11543ba..261fe2e 100644 --- a/site/css/syntax-highlighting.scss +++ b/site/css/syntax-highlighting.scss @@ -23,7 +23,8 @@ Modified to use colors from CSS vars, defined in theme.scss .hljs-doctag, .hl-kw, -.hljs-formula { +.hljs-formula, +.hl-const { color: var(--atom-hue-3); }