Skip to content

Instantly share code, notes, and snippets.

@apelliciari
Last active April 30, 2020 15:27
Show Gist options
  • Save apelliciari/9f303e2285380579c31492672b5bf9f3 to your computer and use it in GitHub Desktop.
Save apelliciari/9f303e2285380579c31492672b5bf9f3 to your computer and use it in GitHub Desktop.
jsoneditor darktheme css
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