Skip to content

Instantly share code, notes, and snippets.

@wayneashleyberry
Last active December 17, 2015 21:49
Show Gist options
  • Save wayneashleyberry/5677199 to your computer and use it in GitHub Desktop.
Save wayneashleyberry/5677199 to your computer and use it in GitHub Desktop.
JSONView Theme
body {
white-space: pre;
font-family: MesloLGMDZ, monospace;
font-size: 14px;
}
.property {
font-weight: bold;
}
.type-null {
color: #ccc;
}
.type-boolean {
color: firebrick;
}
.type-number, a {
color: #08c;
}
.type-string {
color: #46a546;
}
.callback-function {
color: #ccc;
}
.collapser:after {
content: "-";
}
.collapsed > .collapser:after {
content: "+";
}
.ellipsis:after {
content: " … ";
}
.collapsible {
margin-left: 2em;
}
.hoverable {
padding-top: 1px;
padding-bottom: 1px;
padding-left: 2px;
padding-right: 2px;
border-radius: 2px;
-webkit-transition: none;
transition: none;
}
.hovered {
background-color: rgba(0, 136, 204, 0.1);
}
.collapser {
padding-right: 6px;
padding-left: 6px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment