Last active
January 5, 2017 18:19
-
-
Save shreyaskarnik/1471551f471397f23c81 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: 'Ubuntu Mono'; | |
font-size: 16px; | |
line-height:20px; | |
color: white; | |
background-color: #2B2A27; | |
} | |
.property { | |
font-weight: bold; | |
} | |
.type-null { | |
color: rgb(255,0,0); | |
} | |
.type-boolean { | |
color: orange; | |
} | |
.type-number { | |
color: rgba(220,100,255,1); | |
} | |
.type-string { | |
color: rgba(100,240,100,1); | |
} | |
a { | |
color: rgba(0,200,255,1); | |
} | |
.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(255, 255, 255, .30); | |
} | |
.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