Skip to content

Instantly share code, notes, and snippets.

@bultas
Last active August 29, 2015 14:19
Show Gist options
  • Save bultas/08ead03d5fd1a32618ec to your computer and use it in GitHub Desktop.
Save bultas/08ead03d5fd1a32618ec to your computer and use it in GitHub Desktop.
Atom editor - custom stylesheet
/* font-weight problem - https://discuss.atom.io/t/atom-font-weight-anti-alias/4212/6 */
/*
* Your Stylesheet
*
* This stylesheet is loaded when Atom starts up and is reloaded automatically
* when it is changed.
*
* If you are unfamiliar with LESS, you can read more about it here:
* http://www.lesscss.org
*/
body {
-webkit-font-smoothing: antialiased;
}
.tree-view {
}
// style the background and foreground colors on the atom-text-editor-element
// itself
atom-text-editor {
}
// To style other content in the text editor's shadow DOM, use the ::shadow
// expression
atom-text-editor::shadow .cursor {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment