Skip to content

Instantly share code, notes, and snippets.

@guifavere
Last active March 2, 2020 14:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save guifavere/01f35e14cbca49b39f1df5226cd2bd62 to your computer and use it in GitHub Desktop.
Save guifavere/01f35e14cbca49b39f1df5226cd2bd62 to your computer and use it in GitHub Desktop.
JsonView color scheme
body {
background-color: #1a1a1a;
color: #fff;
font-family: 'Ubuntu Mono';
font-size: 16px;
line-height: 1;
}
.property {
font-weight: bold;
}
.type-null {
color: #ff5555;
}
.type-boolean {
color: #ffb86c;
}
.type-number {
color: #bd93f9;
}
.type-string {
color: #50fa7b;
}
div .type-string:not(:last-of-type),
div a ~ .type-string,
a {
color: #8be9fd;
}
.callback-function {
color: #f8f8f2;
}
.collapser:after {
content: "-";
}
.collapsed > .collapser:after {
content: "+";
}
.ellipsis:after {
content: " … ";
}
.collapsible {
margin-left: 1em;
}
.hoverable {
border-radius: 4px;
padding: 2px 5px;
}
.hovered {
background-color: #44475a;
}
.collapser {
color: #6272a4;
cursor: pointer;
font-weight: 700;
padding-left: 6px;
padding-right: 6px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment