3
I’m wanting to each build change the css of my application randomly.
Example:
$menu-color: #0097a7; // retonar apenas uma cor
$menu-color: random(#0097a7,#FAFAFA,#7FB800); // retorna uma color aleatoria.
Since the Random returns only a random number this would not be the solution, as I could solve?
I looked at this article before, but I found it a bit complicated, example: how to get from hexadecimal: #FAFAFA I will get red,green and blue from rgb?
– Gabriel Rodrigues