Tweak the highlight CSS to include more classes.

Specifically, 'kd' (declaration keyword) and 'cm' (multiline comment)

Signed-off-by: Danila Fedorin <danila.fedorin@gmail.com>
This commit is contained in:
Danila Fedorin 2023-11-24 11:03:49 -08:00
parent b5761d4d81
commit abb137514b
1 changed files with 2 additions and 2 deletions

View File

@ -77,7 +77,7 @@ pre code {
}
}
.kr, .k {
.kr, .kd, .k {
font-weight: bold;
@include var(color, code-keyword-color);
}
@ -87,6 +87,6 @@ pre code {
@include var(color, code-type-color);
}
.c, .c1 {
.c, .c1, .cm {
color: $code-comment-color;
}