Skip to content

Instantly share code, notes, and snippets.

@nanashiRei
Created April 12, 2013 18:56
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 nanashiRei/5374262 to your computer and use it in GitHub Desktop.
Save nanashiRei/5374262 to your computer and use it in GitHub Desktop.
JSON View (Google Chrome Plugin) - Dark Style
body {
white-space: pre;
font-family: monospace;
background: #222;
color: #ccc;
}
.property {
font-weight: normal;
font-style: italic;
}
.type-null {
color: gray;
}
.type-boolean {
color: orange;
}
.type-number {
color: #ee4400;
font-weight: bold;
}
.type-string {
color: #cfcf6f;
}
.callback-function {
color: lightblue;
}
.collapser:after {
content: "▼";
}
.collapsed > .collapser:after {
content: "✚";
}
.ellipsis:after {
content: " more...";
font-size: 80%;
}
.collapsible {
margin-left: 2em;
}
.hoverable {
padding-top: 1px;
padding-bottom: 1px;
padding-left: 6px;
padding-right: 6px;
border-radius:8px;
}
.hovered {
background-color: rgba(255, 255,255, 0.2);
}
.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