Created
May 21, 2020 16:03
-
-
Save moresheth/411427a30303a48c3709feb52ccb1dd9 to your computer and use it in GitHub Desktop.
Twilight Theme for JSON View Chrome extension
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: Bitstream Vera Sans Mono, monospace; | |
font-size: 13px; | |
background: #1D1D1D; | |
color: #FFFFFF; | |
} | |
body li, body div { | |
border: 1px solid transparent; | |
} | |
.property { | |
font-weight: normal; | |
} | |
.type-null { | |
color: #666; | |
} | |
.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: #444; | |
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