Skip to content

Instantly share code, notes, and snippets.

@oraricha
Forked from shirish87/JSONView Dark Theme.css
Created October 23, 2017 08:37
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 oraricha/e378e52f8629cab2a1f05e058dfbfa4c to your computer and use it in GitHub Desktop.
Save oraricha/e378e52f8629cab2a1f05e058dfbfa4c to your computer and use it in GitHub Desktop.
This is a dark theme for JSONView chrome extension
body {
white-space: pre;
font-family: monaco, Consolas, Menlo, monospace;
color: white;
background: #282a36;
font-size: 12px;
line-height: 1.5m;
}
.property {
color: #66d9ef;
}
.type-null {
color: gray;
}
.type-boolean {
color: orange;
}
.type-number {
color: lightblue;
}
.type-string {
color: lightgreen;
}
a {
color: #66d9ff;
}
.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