10 lines
191 B
SCSS
10 lines
191 B
SCSS
::selection {
|
|
color: $white;
|
|
background: $primary;
|
|
}
|
|
|
|
@each $color, $hex in $colors {
|
|
@include generate_colour_classes($color, $hex);
|
|
@include generate_button_colors($color, $hex);
|
|
}
|