Last active
December 10, 2020 09:36
-
-
Save ASafaeirad/76a579ce05950f1762c35d1a134cd387 to your computer and use it in GitHub Desktop.
JSONView Style
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: "Input Mono"; | |
| background-color: #404859; | |
| color: #FFF; | |
| font-size: 13px; | |
| } | |
| .property { | |
| color: #B099E3; | |
| font-weight: bold; | |
| } | |
| .type-boolean, | |
| .type-null { | |
| color: #35DEE9; | |
| font-weight: bold; | |
| } | |
| .type-number { | |
| color: #35DEE9; | |
| } | |
| .type-string + a { | |
| color: currentColor; | |
| } | |
| .callback-function { | |
| color: gray; | |
| } | |
| .collapser:after { | |
| font-family: codicon; | |
| content: "\eab4"; | |
| } | |
| .collapsed > .collapser:after { | |
| content: "\eab6"; | |
| } | |
| .ellipsis:after { | |
| color: rgba(255, 255, 255, 0.4); | |
| content: " … "; | |
| } | |
| .collapsible { | |
| margin-left: 1rem; | |
| } | |
| .hoverable { | |
| padding: 8px; | |
| border-radius: 4px; | |
| } | |
| .selected { | |
| outline: none; | |
| border: 1px solid rgba(255, 255, 255, .1); | |
| border-radius: 4px; | |
| } | |
| .hovered { | |
| background-color: #383E4D; | |
| } | |
| .collapser { | |
| padding: 8px 6px; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment