Skip to content

Instantly share code, notes, and snippets.

@jessegavin
Created February 24, 2016 15:17
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 jessegavin/88a8e410562f41bba83e to your computer and use it in GitHub Desktop.
Save jessegavin/88a8e410562f41bba83e to your computer and use it in GitHub Desktop.
CodePen theme for JSONView
@import url(https://fonts.googleapis.com/css?family=Inconsolata);
body {
white-space: pre;
font-family: "Inconsolata";
background-color: rgb(29, 31, 32);
color: #eee;
}
.property {
font-weight: bold;
color: #ddca7e;
}
.type-null {
color: gray;
}
.type-boolean {
color: #CD772A;
}
.type-number {
color: #967F94;
}
.type-string {
color: #96B38A;
}
a {
color: #967F94;
}
.callback-function {
color: gray;
}
.collapser:after {
cursor: pointer;
content: "-";
}
.collapsed > .collapser:after {
cursor: pointer;
content: "+";
}
.ellipsis:after {
content: " … ";
}
.collapsible {
margin-left: 1em;
}
.hoverable {
padding-top: 1px;
padding-bottom: 1px;
padding-left: 2px;
padding-right: 2px;
border-radius: 2px;
}
.hovered {
background-color: rgba(235, 238, 249, .15);
}
.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