Skip to content

Instantly share code, notes, and snippets.

@naoyeye
Forked from timnew/JSONView Dark Theme.css
Last active November 22, 2017 06:07
Show Gist options
  • Save naoyeye/1fba86584c634c731e3a04cf2f795f2f to your computer and use it in GitHub Desktop.
Save naoyeye/1fba86584c634c731e3a04cf2f795f2f to your computer and use it in GitHub Desktop.
This is a dark theme for JSONView chrome extension
body {
white-space: pre;
font-family: "Source Code Pro", consolas;
color: white;
background: #2d3845;
font-size: 13px;
}
.property {
color: orange;
font-weight: bold;
}
.type-null {
color: gray;
}
.type-boolean {
color: orangered;
}
.type-number {
color: lightblue;
}
.type-string {
color: lightgreen;
}
a {
color: dodgerBlue;
}
.callback-function {
color: gray;
}
.collapser:after {
content: "-";
}
.collapsed > .collapser:after {
content: "+";
}
.ellipsis:after {
content: " … ";
}
.collapsible {
margin-left: 2em;
}
.hoverable {
padding: 1px 2px 1px 2px;
border-radius: 3px;
}
.hovered {
background-color: rgba(255, 255, 255, .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