Created
June 13, 2018 14:25
-
-
Save mrchief/4d3fa3aa19b31262e57e92146f440eb4 to your computer and use it in GitHub Desktop.
Dark Theme for JSONView Chrome Extension (https://chrome.google.com/webstore/detail/jsonview/chklaanhfefbnpoihckbnefhakgolnmc)
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: rgba(34,47,53,1); | |
color: rgba(96,125,138,1); | |
} | |
.property { | |
font-weight: bold; | |
color:rgba(0,253,255,1); | |
} | |
.type-null { | |
color: gray; | |
} | |
.type-boolean { | |
color:rgb(255, 47, 146); | |
} | |
.type-number { | |
color:rgba(215,131,255,1) ; | |
} | |
.type-string { | |
color:rgba(0,250,146,1); | |
} | |
.callback-function { | |
color:rgba(96,125,138,1); | |
} | |
.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:rgba(46,56,60,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
Default anchor colors were hard to read with the theme, so I added this:
Thanks for the theme!