Created
December 8, 2012 01:54
-
-
Save slant/4238152 to your computer and use it in GitHub Desktop.
Custom Twilight theme for JSONView
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: monospace; | |
background: #1D1D1D; | |
color: #FFFFFF; | |
} | |
body li, body div { | |
border: 1px solid transparent; | |
} | |
.property { | |
font-weight: normal; | |
} | |
.type-null { | |
color: #CF6A4C; | |
} | |
.type-boolean { | |
color: #CF6A4C; | |
} | |
.type-number { | |
color: #CF6A4C; | |
} | |
.type-string, a { | |
color: #8F9D6A; | |
text-decoration: none; | |
} | |
.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(45, 45, 45, 1); | |
border: 1px solid #A0A0A0; | |
} | |
.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