Skip to content

Instantly share code, notes, and snippets.

@pstjean
Last active January 2, 2016 11:49
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 pstjean/8299501 to your computer and use it in GitHub Desktop.
Save pstjean/8299501 to your computer and use it in GitHub Desktop.
Solarized for JSONView
/*
Solarized-ish theme for JSONView
https://github.com/gildas-lormeau/JSONView-for-Chrome
*/
body {
white-space: pre;
font-family: monospace;
background-color: #002b36;
color: #839496;
}
a {
color: #2aa198;
}
.property {
font-weight: bold;
color: #93a1a1;
}
.type-null {
color: #586e75;
}
.type-boolean {
color: #dc322f;
}
.type-number {
color: #268bd2;
}
.type-string {
color: #859900;
}
.callback-function {
color: #586e75;
}
.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;
}
.hovered {
background-color: #073642;
}
.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