Last active
September 13, 2022 21:33
-
-
Save iansym/3145269 to your computer and use it in GitHub Desktop.
JSON View solarized theme for Chrome Extension
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 { | |
background-color: #002b36; | |
color: #839496; | |
font-size: 14px; | |
white-space: pre !important; | |
font-family: "Source Code Pro", monospace; | |
} | |
.property { | |
font-weight: bold; | |
} | |
.type-null { | |
color: #2aa198; | |
} | |
.type-boolean { | |
color: #b58900; | |
} | |
.type-number { | |
color: #d33682; | |
} | |
.type-string { | |
color: #2aa198; | |
} | |
a { | |
color: #268bd2; | |
} | |
.callback-function { | |
color: #cb4b16; | |
} | |
.collapser:after { | |
content: "-"; | |
color: #586e75; | |
font-weight: bold; | |
} | |
.collapsed > .collapser:after { | |
content: "+"; | |
color: #586e75; | |
font-weight: bold; | |
} | |
.ellipsis:after { | |
content: "\2026"; | |
} | |
.collapsible { | |
margin-left: 2em; | |
} | |
.hoverable { | |
padding-top: 1px; | |
padding-bottom: 1px; | |
padding-left: 2px; | |
padding-right: 2px; | |
border-radius: 2px; | |
} | |
.hovered { | |
background-color: #073642; | |
} | |
.collapser { | |
padding-right: 10px; | |
padding-left: 6px; | |
} |
Very nice!
Awesome!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks!