Last active
September 12, 2020 15:38
-
-
Save pinei/002eaa3c51c7810ebe3d081f53c97cdb to your computer and use it in GitHub Desktop.
Atom editor > stylesheet customizations > .atom/styles.less
This file contains hidden or 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
| /* | |
| * This stylesheet is loaded when Atom starts up and is reloaded automatically | |
| * when it is changed and saved. | |
| * ... | |
| */ | |
| /* | |
| * Markdown Heading Customization | |
| * https://colordesigner.io/gradient-generator | |
| */ | |
| atom-text-editor .syntax--markup.syntax--heading.syntax--heading-1.syntax--gfm { color: #ffff00 } | |
| atom-text-editor .syntax--markup.syntax--heading.syntax--heading-2.syntax--gfm { color: #ffda1b } | |
| atom-text-editor .syntax--markup.syntax--heading.syntax--heading-3.syntax--gfm { color: #ffb63b } | |
| atom-text-editor .syntax--markup.syntax--heading.syntax--heading-4.syntax--gfm { color: #ff9754 } | |
| atom-text-editor .syntax--markup.syntax--heading.syntax--heading-5.syntax--gfm { color: #fe7e68 } | |
| atom-text-editor .syntax--markup.syntax--heading.syntax--heading-6.syntax--gfm { color: #e06c75 } | |
| atom-text-editor .syntax--markup.syntax--heading.syntax--marker.syntax--gfm { color: inherit } | |
| /* | |
| * Markdown Formatting Customization | |
| */ | |
| atom-text-editor .syntax--markup.syntax--strike.syntax--gfm { text-decoration: line-through; opacity: 0.35 } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment