runbot/runbot_merge/static/scss/runbot_merge_backend.scss
Xavier Morel fb60c38731 [IMP] runbot_merge: add color key to freeze wizard
Was difficult to understand what the colors meant on the required PRs.

Part of #718
2023-01-25 12:25:45 +01:00

8 lines
237 B
SCSS

@for $item from 2 through length($o-colors) {
.fucking_color_key_#{$item - 1} {
$background-color: nth($o-colors, $item);
color: color-contrast($background-color);
background-color: $background-color;
}
}