Skip to content

Instantly share code, notes, and snippets.

@JohnL4
Created June 17, 2015 12:36
Show Gist options
  • Save JohnL4/ebb0157c7e0043b6fbaf to your computer and use it in GitHub Desktop.
Save JohnL4/ebb0157c7e0043b6fbaf to your computer and use it in GitHub Desktop.
Local atom syntax theme customization
/*
* I like the Atom Light syntax theme, but the comment color is too light for me to comfortably large block comments
* (i.e., DOCUMENTATION), which, you know, some of us like to actually READ. So, this is a quick-n-dirty hack to make
* the comment color mo betta. Add this to your styles.less file (you can find it by hitting the "Open Config Folder"
* button in the Settings view.)
*/
atom-text-editor::shadow .comment {
color: #778877;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment