Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@dipakcg
Created May 22, 2016 07:59
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 dipakcg/a164a26d051fa08fda5323c0cf5c37f3 to your computer and use it in GitHub Desktop.
Save dipakcg/a164a26d051fa08fda5323c0cf5c37f3 to your computer and use it in GitHub Desktop.
Atom.io: Style Atom.io like Sublime Text on Mac
/*
* 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;
background-color: #E6E6E6 !important;
-webkit-font-smoothing: subpixel-antialiased;
color: #333 !important;
.list-group li:not(.list-nested-item),
.list-tree li:not(.list-nested-item),
.list-group li.list-nested-item > .list-item,
.list-tree li.list-nested-item > .list-item {
color: #333 !important;
}
.selected:before {
background-color: #D1D1D1 !important;
}
}
// style the background and foreground colors on the atom-text-editor-element itself
atom-text-editor {
// color: white;
// background-color: hsl(180, 24%, 12%);
}
// To style other content in the text editor's shadow DOM, use the ::shadow expression
atom-text-editor::shadow .cursor {
// border-color: red;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment