Created
July 27, 2015 03:07
-
-
Save jnewman/2b14f08d8ea8abb73acf to your computer and use it in GitHub Desktop.
JSONView theme (https://chrome.google.com/webstore/detail/jsonview/chklaanhfefbnpoihckbnefhakgolnmc?hl=en)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
body { | |
white-space: pre; | |
font-family: monospace; | |
background-color: rgb(45, 45, 100); | |
color: rgb(200, 150, 100); | |
} | |
.property { | |
font-weight: bold; | |
} | |
.type-null { | |
color: gray; | |
} | |
.type-boolean { | |
color: firebrick; | |
} | |
.type-number { | |
color: lightblue; | |
} | |
.type-string { | |
color: green; | |
} | |
.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: rgb(60, 60, 115); | |
} | |
.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