Skip to content

Instantly share code, notes, and snippets.

@dogancelik
Last active August 31, 2021 04:33
Show Gist options
  • Save dogancelik/73bea722c86b6eb70b6e to your computer and use it in GitHub Desktop.
Save dogancelik/73bea722c86b6eb70b6e to your computer and use it in GitHub Desktop.
Colored indent guides based on level #Atom
// 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