Created
June 17, 2015 12:36
-
-
Save JohnL4/ebb0157c7e0043b6fbaf to your computer and use it in GitHub Desktop.
Local atom syntax theme customization
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* 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