Eu tenho o seguinte código:
@color : #d14836;
.stripes span {
-webkit-background-size: 30px 30px;
-moz-background-size: 30px 30px;
background-size: 30px 30px;
background-image: -webkit-gradient(linear, left top, right bottom,
color-stop(.25, rgba(209, 72, 54, 1)), color-stop(.25, transparent),
color-stop(.5, transparent), color-stop(.5, rgba(209, 72, 54, 1)),
color-stop(.75, rgba(209, 72, 54, 1)), color-stop(.75, transparent),
to(transparent));
Eu preciso converter @color
para rgba(209, 72, 54, 1)
.
Portanto, preciso substituir rgba(209, 72, 54, 1)
no meu código uma função Less que gere um rgba()
valor da minha @color
variável.
Como posso fazer isso com menos?