color up code

This commit is contained in:
Nathan McCarty 2025-02-06 18:28:53 -05:00
parent bf3f2c4bf5
commit 68530c58d9

View file

@ -71,3 +71,25 @@ code {
color: var(--code-fg-0); color: var(--code-fg-0);
background-color: var(--code-bg-0); background-color: var(--code-bg-0);
} }
.hl-type {
color: var(--code-yellow);
}
.hl-module {
font-style: italic;
color: car(--code-fg-1);
}
.hl-function {
color: var(--code-green);
}
.hl-bound {
color: var(--code-magenta);
}
.hl-keyword {
color: var(--code-blue);
}
.hl-comment {
color: var(--code-dim-0);
}
.hl-data {
color: var(--code-red);
}