Last active
December 17, 2015 21:49
-
-
Save wayneashleyberry/5677199 to your computer and use it in GitHub Desktop.
JSONView Theme
This file contains hidden or 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: MesloLGMDZ, monospace; | |
font-size: 14px; | |
} | |
.property { | |
font-weight: bold; | |
} | |
.type-null { | |
color: #ccc; | |
} | |
.type-boolean { | |
color: firebrick; | |
} | |
.type-number, a { | |
color: #08c; | |
} | |
.type-string { | |
color: #46a546; | |
} | |
.callback-function { | |
color: #ccc; | |
} | |
.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; | |
-webkit-transition: none; | |
transition: none; | |
} | |
.hovered { | |
background-color: rgba(0, 136, 204, 0.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