Skip to content

Commit d044646

Browse files
committed
fix(prism-theme): fix typo .toke.variable -> .token.variable
The CSS selector for Prism variable tokens was misspelled as .toke.variable instead of .token.variable. This caused variable tokens (bash $VARIABLES, CSS custom properties, template literals, etc.) to never receive the intended color (#a9becc) in syntax-highlighted code blocks across all documentation pages.
1 parent f2a42f7 commit d044646

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/components/Markdown/prism-theme.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ pre[class*="lang-"] {
8282
.token.entity,
8383
.token.url,
8484
.language-css .token.string,
85-
.toke.variable {
85+
.token.variable {
8686
color: #a9becc;
8787
}
8888

0 commit comments

Comments
 (0)