Skip to content

Instantly share code, notes, and snippets.

@tothandras
Last active August 29, 2015 14:02
Show Gist options
  • Save tothandras/9bb39992aa9559fea295 to your computer and use it in GitHub Desktop.
Save tothandras/9bb39992aa9559fea295 to your computer and use it in GitHub Desktop.
@success: #00CC00;
@failure: #c0392b;
@failure-again: #e74c3c;
@warnings: #e67e22;
@running: #f1c40f;
@exception: #9b59b6;
@offline: #bdc3c7;
@not-started: #ecf0f1;
@colors: success, failure, failure-again, warnings, running, exception, offline, not-started;
.generateColors(@index: 1) when (@index <=length(@colors)) {
@color: extract(@colors, @index);
&.@{color} {
background-color: @@color;
}
.generateColors((@index + 1));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment