fix(docs): fix bad highlight color (#7199)

This commit is contained in:
Victor Wheeler 2024-11-04 01:52:15 -07:00 committed by GitHub
parent 6b7d0a3819
commit e4295f8925
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -151,3 +151,8 @@ div.body {
border: 1px solid #e1e4e5;
font-size: 75%;
}
/* This replaces a color present in `pygments.css` which is used to highlight recognized
* function names. It is too dark for DARK mode, and nearly black in LIGHT mode so it is
* difficult to tell that it is even highlighted. This color override remedies both. */
.highlight .nf { color: #2648ee } /* Name.Function */