mirror of
https://github.com/zhigang1992/probot.github.io.git
synced 2026-01-12 22:49:53 +08:00
16 lines
315 B
SCSS
16 lines
315 B
SCSS
$brand: (red, #EF4136),
|
|
(blue, #00B0D8),
|
|
(blue-dark, darken(#00B0D8, 10%)),
|
|
(blue-light, lighten(#AFDFE4, 15%)),
|
|
(orange, #FCBA63);
|
|
|
|
@each $name, $color in $brand {
|
|
.bg-brand-#{"" + $name} {
|
|
background-color: $color;
|
|
}
|
|
|
|
.text-brand-#{"" + $name} {
|
|
color: $color;
|
|
}
|
|
}
|