Last active
April 1, 2017 17:47
-
-
Save fcannizzaro/7410a65fba298eb38584f3f891f93db0 to your computer and use it in GitHub Desktop.
JSON View Material theme for Chrome Extension (Color Scheme https://github.com/equinusocio/material-theme)
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: #263238; | |
color : #89DDFF; | |
font-family: monospace; | |
white-space: pre; | |
} | |
a{ | |
color: #C3E88D; | |
} | |
.property { | |
color : #C792EA; | |
font-weight: bold; | |
} | |
.type-null { | |
color: #F78C6C; | |
} | |
.type-boolean { | |
color: #F78C6C; | |
} | |
.type-number { | |
color: #F78C6C; | |
} | |
.type-string { | |
color: #C3E88D; | |
} | |
.collapser:after { | |
color: #FFCB6B; | |
content: "-"; | |
} | |
.collapsed > .collapser:after { | |
color: #FFCB6B; | |
content: "+"; | |
} | |
.ellipsis:after { | |
content: " … "; | |
} | |
.collapsible { | |
margin-left: 2em; | |
} | |
.hoverable { | |
border-radius: 2px; | |
outline : none; | |
padding-bottom: 1px; | |
padding-left: 2px; | |
padding-right: 2px; | |
padding-top: 1px; | |
} | |
.hovered { | |
background-color: rgba(255, 255, 255, 0.1); | |
} | |
.collapser { | |
padding-left: 6px; | |
padding-right: 6px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment