I am using scsslint to validate my scss, I am getting this error bellow, what is the best way to fix that?
[W] ColorVariable: Color literals like
rgba(0, 0, 0, 0.75)
should only be used in variable declarations; they should be referred to via variable everywhere else.
@mixin box-shadow-new($value) {
-webkit-box-shadow: $value;
-moz-box-shadow: $value;
box-shadow: $value;
}
.btn-exit {
@include box-shadow-new(4px 3px 26px -6px rgba(0, 0, 0, .75));
background-color: $button-bg-main;
border-color: $button-bg-main;
color: $button-color-main;
}