Created
February 24, 2016 15:17
-
-
Save jessegavin/88a8e410562f41bba83e to your computer and use it in GitHub Desktop.
CodePen 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
@import url(https://fonts.googleapis.com/css?family=Inconsolata); | |
body { | |
white-space: pre; | |
font-family: "Inconsolata"; | |
background-color: rgb(29, 31, 32); | |
color: #eee; | |
} | |
.property { | |
font-weight: bold; | |
color: #ddca7e; | |
} | |
.type-null { | |
color: gray; | |
} | |
.type-boolean { | |
color: #CD772A; | |
} | |
.type-number { | |
color: #967F94; | |
} | |
.type-string { | |
color: #96B38A; | |
} | |
a { | |
color: #967F94; | |
} | |
.callback-function { | |
color: gray; | |
} | |
.collapser:after { | |
cursor: pointer; | |
content: "-"; | |
} | |
.collapsed > .collapser:after { | |
cursor: pointer; | |
content: "+"; | |
} | |
.ellipsis:after { | |
content: " … "; | |
} | |
.collapsible { | |
margin-left: 1em; | |
} | |
.hoverable { | |
padding-top: 1px; | |
padding-bottom: 1px; | |
padding-left: 2px; | |
padding-right: 2px; | |
border-radius: 2px; | |
} | |
.hovered { | |
background-color: rgba(235, 238, 249, .15); | |
} | |
.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