more subtle Next hover state

This commit is contained in:
Ben Wheeler 2019-09-04 12:06:59 -04:00
parent 2a78723ce4
commit c92c0af396
2 changed files with 3 additions and 2 deletions

View file

@ -8,7 +8,7 @@ $ui-orange: hsla(38, 100, 55, 1); // #FFAB19 Control Primary
$ui-orange-high-contrast: hsla(30, 100, 55, 1); // #FFAB19 Control Primary
$ui-orange-10percent: hsla(35, 90, 55, .1);
$ui-orange-25percent: hsla(35, 90, 55, .25);
$ui-orange-75percent: hsla(38, 100, 55, .75);
$ui-orange-90percent: hsla(38, 100, 55, .9);
$ui-dark-orange: hsla(30, 100, 55, 1); // ##FF8C1A Variables Primary

View file

@ -11,7 +11,8 @@
background-color: $ui-orange;
&:hover {
background-color: $ui-orange-75percent;
transition: background-color .25s ease;
background-color: $ui-orange-90percent;
}
}