Skip to content

Instantly share code, notes, and snippets.

@HoukasaurusRex
Created February 17, 2021 08:47
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 HoukasaurusRex/cb5ad2fa0693165f008f7ac36918f332 to your computer and use it in GitHub Desktop.
Save HoukasaurusRex/cb5ad2fa0693165f008f7ac36918f332 to your computer and use it in GitHub Desktop.
JSONView theme based on the Night Owl theme for VSCode
body {
white-space: pre;
font-family: consolas;
color: white;
background: #011627;
font-size: 12px;
}
.property {
color: #7fdbca;
font-weight: bold;
}
.type-null {
color: #ff5874;
}
.type-boolean {
color: #c5e478;
}
.type-number {
color: #c5e478;
}
.type-string {
color: #c789d6;
}
a {
color: #80CBC4;
}
.callback-function {
color: #c789d6;
}
.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, .05);
}
.collapser {
padding-right: 6px;
padding-left: 6px;
}
@HoukasaurusRex
Copy link
Author

If you have the JSONView extension for Chrome and are having trouble finding a good theme, feel free to take this one I based on Sarah Drasner's Night Owl theme

image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment