Created
June 9, 2020 20:08
-
-
Save carcamano/8a5e99a9922c35cc3fc18affc0e821a3 to your computer and use it in GitHub Desktop.
JSONView Chrome Extension Monokai CSS Theme
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
| *{ | |
| color: #FFFFFF; | |
| font-size: 1em; | |
| } | |
| body { | |
| white-space: pre; | |
| font-family: monospace; | |
| background-color: #222222; | |
| } | |
| .property { | |
| font-weight: normal; | |
| color:#f92670; | |
| } | |
| .type-null { | |
| color: #be84ff; | |
| } | |
| .type-boolean { | |
| color: #be84ff; | |
| } | |
| .type-number { | |
| color: #be84ff; | |
| } | |
| .type-string { | |
| color: #a6e22e; | |
| } | |
| .hoverable a { | |
| color: #fd971f; | |
| } | |
| .callback-function { | |
| color: #fd971f; | |
| } | |
| .collapser:after { | |
| content: "-"; | |
| } | |
| .collapsed > .collapser:after { | |
| 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: #222222; | |
| } | |
| .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