Last active
May 14, 2021 11:31
-
-
Save Markvandersteen/f49768df10e8626511a9b2be941b94c3 to your computer and use it in GitHub Desktop.
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: 'Source Code Pro', monospace; | |
color: white; | |
background: #282C34; | |
} | |
.property { | |
color: #DB6A73; | |
font-weight: bold; | |
} | |
.type-null { | |
color: gray; | |
} | |
.type-boolean { | |
color: #AA6ABF; | |
} | |
.type-number { | |
color: #B98B5E; | |
} | |
.type-string { | |
color: #97C16B; | |
} | |
a { | |
color: dodgerBlue; | |
} | |
.callback-function { | |
color: gray; | |
} | |
.collapser:after { | |
content: "-"; | |
} | |
.collapsed > .collapser:after { | |
content: "+"; | |
} | |
.ellipsis:after { | |
content: " … "; | |
} | |
.collapsible { | |
margin-left: 2em; | |
} | |
.hoverable { | |
padding: 1px 2px 1px 2px; | |
border-radius: 3px; | |
} | |
.hovered { | |
background-color: rgba(255, 255, 255, .3); | |
} | |
.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