Last active
June 8, 2022 08:22
-
-
Save MuXiu1997/3d156fc09086117ba5a7164f1a88e30f to your computer and use it in GitHub Desktop.
JSON Viewer options
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
| { | |
| "prependHeader": true, | |
| "maxJsonSize": 400, | |
| "alwaysFold": false, | |
| "alwaysRenderAllContent": false, | |
| "sortKeys": false, | |
| "clickableUrls": true, | |
| "wrapLinkWithAnchorTag": false, | |
| "openLinksInNewWindow": true, | |
| "autoHighlight": true | |
| } |
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
| { | |
| "readOnly": false, | |
| "lineNumbers": true, | |
| "lineWrapping": true, | |
| "foldGutter": true, | |
| "tabSize": 2, | |
| "indentCStyle": false, | |
| "showArraySize": true | |
| } |
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
| /* Based on the Nord theme | |
| * Homepage: https://www.nordtheme.com/ | |
| */ | |
| .CodeMirror { | |
| font-family: JetBrains Mono, Source Han Sans CN, monospace; | |
| font-size: 16px; | |
| line-height: 1.75; | |
| background-color: #2E3440; | |
| } | |
| .CodeMirror-cursor { | |
| border-left-color: #D8DEE9; | |
| } | |
| .CodeMirror-gutters { | |
| background-color: #2E3440; | |
| border-right-color: #4C566A; | |
| } | |
| .CodeMirror-guttermarker-subtle { | |
| color: #4C566A; | |
| } | |
| .CodeMirror-selected { | |
| background-color: #434C5E !important; | |
| } | |
| .CodeMirror-linenumber { | |
| color: #4C566A; | |
| } | |
| .CodeMirror-foldmarker { | |
| color: #4C566A; | |
| text-shadow: unset; | |
| } | |
| .cm-s-default.CodeMirror-wrap pre { | |
| color: #ECEFF4; | |
| } | |
| .cm-property { | |
| color: #88C0D0 !important | |
| } | |
| .cm-comment { | |
| color: #616E88 !important; | |
| } | |
| .cm-variable { | |
| color: #8FBCBB !important; | |
| } | |
| .cm-string { | |
| color: #A3BE8C !important; | |
| } | |
| .cm-number { | |
| color: #B48EAD !important; | |
| } | |
| .cm-atom { | |
| color: #81A1C1 !important; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment