Last active
April 30, 2020 15:27
-
-
Save apelliciari/9f303e2285380579c31492672b5bf9f3 to your computer and use it in GitHub Desktop.
jsoneditor darktheme css
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
div.jsoneditor, | |
div.jsoneditor-menu { | |
border-color: #2c3e50; | |
} | |
div.jsoneditor-menu { | |
background-color: #2c3e50; | |
} | |
div.jsoneditor-menu .jsoneditor-sort { | |
visibility: hidden; | |
} | |
div.jsoneditor-menu .jsoneditor-transform { | |
visibility: hidden; | |
} | |
div.jsoneditor-menu .jsoneditor-search { | |
visibility: hidden; | |
} | |
/* coloring of JSON in tree mode */ | |
div.jsoneditor-readonly { | |
color: #acacac; | |
} | |
div.jsoneditor td.jsoneditor-separator { | |
color: #acacac; | |
} | |
div.jsoneditor-value.jsoneditor-string { | |
color: #40a535; | |
} | |
div.jsoneditor-value.jsoneditor-object, | |
div.jsoneditor-value.jsoneditor-array { | |
color: #bababa; | |
} | |
div.jsoneditor-value.jsoneditor-number { | |
color: #ff4040; | |
} | |
div.jsoneditor-value.jsoneditor-boolean { | |
color: #ff8048; | |
} | |
div.jsoneditor-value.jsoneditor-null { | |
color: #49a7fc; | |
} | |
div.jsoneditor-value.jsoneditor-invalid { | |
color: white; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment