Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: #3664 use light color scheme for API documentation, adapted from… #1

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion static/styles/jsdoc.css
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ footer {
.prettyprint code {
line-height: 18px;
display: block;
background-color: #0d152a;
background-color: #f3f3f3;
color: #4D4E53;
}

Expand Down
22 changes: 12 additions & 10 deletions static/styles/prettify.css
Original file line number Diff line number Diff line change
@@ -1,35 +1,37 @@
.pln {
color: #ddd;
color: #2c2c2c;
}

/* string content */
.str {
color: #61ce3c;
color: #b84;
}

/* a keyword */
.kwd {
color: #fbde2d;
color: #2c2c2c;
font-weight: bold;
}

/* a comment */
.com {
color: #aeaeae;
color: #998;
font-style: italic;
}

/* a type name */
.typ {
color: #8da6ce;
color: #2238dd;
}

/* a literal value */
.lit {
color: #fbde2d;
color: #099;
}

/* punctuation */
.pun {
color: #ddd;
color: #2c2c2c;
}

/* lisp open bracket */
Expand All @@ -44,17 +46,17 @@

/* a markup tag name */
.tag {
color: #8da6ce;
color: #2238dd;
}

/* a markup attribute name */
.atn {
color: #fbde2d;
color: #099;
}

/* a markup attribute value */
.atv {
color: #ddd;
color: #2c2c2c;
}

/* a declaration */
Expand Down