Skip to content

Instantly share code, notes, and snippets.

@amellnik
Created May 24, 2016 22:01
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 amellnik/3236bf0e2667aba3127481cf7948c698 to your computer and use it in GitHub Desktop.
Save amellnik/3236bf0e2667aba3127481cf7948c698 to your computer and use it in GitHub Desktop.
Custom styles for Atom (on top of One Dark)
/*
* 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
*/
/*
* Examples
* (To see them, uncomment and save)
*/
// style the background color of the tree view
.tree-view {
// background-color: whitesmoke;
}
// style the background and foreground colors on the atom-text-editor-element itself
atom-text-editor {
// color: white;
//background-color: #222222;
}
// To style other content in the text editor's shadow DOM, use the ::shadow expression
atom-text-editor::shadow .cursor {
// border-color: red;
}
atom-text-editor::shadow .keyword{
color: #008000;
}
atom-text-editor::shadow .keyword.operator {
color: #AA22FF;
}
atom-text-editor::shadow .comment {
color: #408080;
}
atom-text-editor::shadow .string {
color: #1B6296;
}
atom-text-editor::shadow .constant.other.symbol {
color: #B58B64;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment