Skip to content

Instantly share code, notes, and snippets.

@kavun
Created September 29, 2023 14:16
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 kavun/18f54dd02fecd2b81e157a18cba86a8d to your computer and use it in GitHub Desktop.
Save kavun/18f54dd02fecd2b81e157a18cba86a8d to your computer and use it in GitHub Desktop.
JSONVue Dracula Theme
body {
white-space: pre-wrap;
word-break: break-word;
font-family: monospace;
background-color: #282a36;
color: #f8f8f2;
}
.property {
font-weight: bold;
}
.type-null {
color: #ff79c6;
}
.type-boolean {
color: #ff79c6;
}
.type-number {
color: #bd93f9;
}
.type-string {
color: #f1fa8c;
}
.callback-function {
color: #50fa7b;
}
.collapser::after {
content: "-";
}
.collapsed>.collapser::after {
content: "+";
}
.ellipsis::after {
content: " … ";
}
.collapsible {
margin-left: 2em;
}
.collapsible .collapsible::before {
border-width: 0;
border-left: #6272a4 .1em dashed;
content: " ";
max-width: .1em;
position: absolute;
height: calc(100% - 3.4em);
left: .4em;
top: 1.8em;
}
.hoverable {
padding: .1em;
transition: background-color .2s ease-out 0s;
}
.hovered {
background-color: #44475a;
transition-delay: .2s;
}
.collapser {
position: absolute;
top: .1em;
left: -1.4em;
cursor: default;
user-select: none;
padding-right: .5em;
padding-left: .5em;
color: #6272a4;
}
.selected {
outline-style: solid;
outline-width: .1em;
outline-style: dashed;
outline-color: #6272a4;
}
a {
color: #bd93f9;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment