Skip to content

Instantly share code, notes, and snippets.

@caminashell
Created March 28, 2025 21:36
Show Gist options
  • Save caminashell/56e23101f5a732448fd56ff9f6674b90 to your computer and use it in GitHub Desktop.
Save caminashell/56e23101f5a732448fd56ff9f6674b90 to your computer and use it in GitHub Desktop.
JSONVue Extension Styling
body, #json {
margin: 30px 20px;
white-space: pre;
font-family: Menlo, Monaco, "Courier New", monospace;
font-size: 14px;
color: #d4d4d4;
background: #1e1e1e;
text-wrap-mode: wrap;
}
.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