- Click on the settings icon.
- Build custom theme with style editor.
- Paste the stylesheet.
Created
June 23, 2020 19:53
-
-
Save ooade/d98463b0d307cc44b7949d86d1f77f59 to your computer and use it in GitHub Desktop.
JSON Viewer extension in dark mode.
This file contains 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
body { | |
white-space: pre; | |
font-family: monospace; | |
background: #1d1e21; | |
color: #fff; | |
} | |
.property { | |
font-weight: bold; | |
color: #fff; | |
} | |
.type-null { | |
color: gray; | |
} | |
.type-boolean { | |
color: burlywood; | |
} | |
.type-number { | |
color: aquamarine; | |
} | |
.type-string { | |
color: beige; | |
} | |
a { | |
color: aqua; | |
} | |
.callback-function { | |
color: gray; | |
} | |
.collapser:after { | |
font-size: 13px; | |
content: "-"; | |
} | |
.collapsed > .collapser:after { | |
font-size: 13px; | |
content: "+"; | |
} | |
.ellipsis:after { | |
content: attr(data-value); | |
} | |
.collapsible { | |
margin-left: 2em; | |
} | |
.hoverable { | |
padding: 1px 2px; | |
border-radius: 2px; | |
} | |
.hovered { | |
background-color: cadetblue; | |
} | |
.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