Last active
August 31, 2021 04:33
-
-
Save dogancelik/73bea722c86b6eb70b6e to your computer and use it in GitHub Desktop.
Colored indent guides based on level #Atom
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
// https://discuss.atom.io/t/multi-color-indent-guide-lines/2810/5 | |
// https://color.adobe.com/Lassiter-color-theme-6736263/ | |
atom-text-editor::shadow { | |
.indent-guide { | |
&:nth-child(5n+1) { | |
color: #F272B8; | |
} | |
&:nth-child(5n+2) { | |
color: #4F4D8C; | |
} | |
&:nth-child(5n+3) { | |
color: #A0C4F2; | |
} | |
&:nth-child(5n+4) { | |
color: #F2E963; | |
} | |
&:nth-child(5n+5) { | |
color: #F29727; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment