Skip to content

Instantly share code, notes, and snippets.

@blake-simpson
Last active August 29, 2015 14:25
Show Gist options
  • Save blake-simpson/ce28c61c726d3c7608d6 to your computer and use it in GitHub Desktop.
Save blake-simpson/ce28c61c726d3c7608d6 to your computer and use it in GitHub Desktop.
Atom custom stylesheet
// make all JSON content dark blue
.editor[data-grammar="source json"] {
color: @syntax-selection-color;
// make all strings pastel white
&> .string.quoted.json {
color: @syntax-text-color;
}
// make an exception for all .string keys whose immediate parent is .value
& > .value.json > .string.json {
color: red
}
}
.modal.overlay {
width: 800px;
margin-left: -400px;
}
.fuzzy-finder {
width: 784px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment