Skip to content

Instantly share code, notes, and snippets.

@dsernst
Created October 8, 2015 22:18
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 dsernst/2232711187aebdb82355 to your computer and use it in GitHub Desktop.
Save dsernst/2232711187aebdb82355 to your computer and use it in GitHub Desktop.
My custom style modifications to Atom
/*
* Your Stylesheet
*
* This stylesheet is loaded when Atom starts up and is reloaded automatically
* when it is changed and saved.
*
* Add your own CSS or Less to fully customize Atom.
* If you are unfamiliar with Less, you can read more about it here:
* http://lesscss.org
*/
@backgroundColor: hsla(229, 15%, 11%, 1);
// style the background and foreground colors on the atom-text-editor-element itself
atom-text-editor {
background-color: @backgroundColor
}
atom-text-editor::shadow .invisible-character {
color: @backgroundColor
}
.script-view {
max-height: 700px
}
.script-view .panel-body,
.script-view .panel-body pre {
background-color: #050505
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment