Skip to content

Instantly share code, notes, and snippets.

@jhammann
Created August 9, 2019 14:15
Show Gist options
  • Save jhammann/0db3fe1528c5026ca31505b062cd9911 to your computer and use it in GitHub Desktop.
Save jhammann/0db3fe1528c5026ca31505b062cd9911 to your computer and use it in GitHub Desktop.
The Night Owl theme for the JSONView chrome extension.
body {
white-space: pre;
font-family: monospace;
background-color: #011627;
color: #d6deeb;
}
.property {
font-weight: bold;
color: #7fdbca;
}
.type-null {
color: #ff5874;
}
.type-boolean {
color: #ff5874;
}
.type-number {
color: #f78c6c;
}
.type-string {
color: #c789d6;
}
a {
color: #c789d6;
}
.callback-function {
color: gray;
}
.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: rgba(8, 77, 129, 0.6);
}
.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