Skip to content

Instantly share code, notes, and snippets.

@zessx
Created May 5, 2022 14:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zessx/6985e019278d00f1c812bbf32d59efce to your computer and use it in GitHub Desktop.
Save zessx/6985e019278d00f1c812bbf32d59efce to your computer and use it in GitHub Desktop.
JSONVue dark theme
/* https://chrome.google.com/webstore/detail/jsonvue/chklaanhfefbnpoihckbnefhakgolnmc?hl=fr */
#json {
white-space: pre;
font-family: Menlo, Monaco, "Courier New", monospace;
color: #d4d4d4;
background: #1e1e1e;
}
.property {
color: #9cdcfe;
}
.type-null,
.type-boolean,
.type-number {
color: #c586c0;
}
.type-string {
color: #ce9178;
}
a {
color: #569cd6;
}
.callback-function {
color: gray;
}
.collapser,
.ellipsis {
color: #4ec9b0;
}
.collapser:after {
content: "-";
}
.collapsed > .collapser:after {
content: "+";
}
.ellipsis:after {
content: " … ";
}
.collapsible {
margin-left: 2em;
}
.hoverable {
padding: 1px 2px 1px 2px;
border-radius: 3px;
}
.hovered {
background-color: rgba(78, 201, 176, .3);
}
.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