Give code block line numbers a less prominent color

This commit is contained in:
Eryn Wells 2023-11-19 07:28:23 -08:00
parent 3783801365
commit 5cccfb9887

View file

@ -24,7 +24,17 @@
/* LineTable */ .chroma .lntable { border-spacing: 0; padding: 0; margin: 0; border: 0; }
/* LineHighlight */ .chroma .hl { background-color: #ffffcc }
/* LineNumbersTable */ .chroma .lnt { white-space: pre; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7f7f7f }
/* LineNumbers */ .chroma .ln { white-space: pre; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7f7f7f }
/* LineNumbers */
.chroma .ln {
color: #7f7f7f;
background-color: var(--background-color);
padding: 0 0.4em 0 0.4em;
user-select: none;
white-space: pre;
}
.chroma .ln a[href] {
color: inherit;
}
/* Keyword */ .chroma .k { color: #00a8c8 }
/* KeywordConstant */ .chroma .kc { color: #00a8c8 }
/* KeywordDeclaration */ .chroma .kd { color: #00a8c8 }