Created
February 28, 2015 22:52
-
-
Save systemsoverload/7a4e31f9b1f38cdc6d3f to your computer and use it in GitHub Desktop.
JSON View Zenburn theme for Chrome Extension
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 { | |
background-color: #393939; | |
color: #fed6af; | |
font-size: 14px; | |
white-space: pre !important; | |
font-family: "Consolas", "Source Code Pro", monospace; | |
} | |
.property { | |
font-weight: bold; | |
} | |
.type-null { | |
color: #d6d6ae; | |
} | |
.type-boolean { | |
color: #ffffff; | |
} | |
.type-number { | |
color: #87d6d5; | |
} | |
.type-string { | |
color: #d68686; | |
} | |
a { | |
color: #87ae86; | |
font-weight: bold; | |
} | |
.callback-function { | |
color: #cb4b16; | |
} | |
.collapser:after { | |
content: "-"; | |
color: #8b8b8b; | |
font-weight: bold; | |
} | |
.collapsed > .collapser:after { | |
content: "+"; | |
color: #8b8b8b; | |
font-weight: bold; | |
} | |
.ellipsis:after { | |
content: "\2026"; | |
} | |
.collapsible { | |
margin-left: 2em; | |
} | |
.hoverable { | |
padding-top: 1px; | |
padding-bottom: 1px; | |
padding-left: 2px; | |
padding-right: 2px; | |
border-radius: 2px; | |
} | |
.hovered { | |
background-color: #4f4f4f; | |
} | |
.collapser { | |
padding-right: 10px; | |
padding-left: 6px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment