// Mixin to easily color standard and hover states @mixin color-hover($standard, $hover) { color: $standard; &:hover { color: $hover; } } // The same as color-hover but for the background-color @mixin background-hover($standard, $hover) { background-color: $standard; &:hover { background-color: $hover; } }