Skip to content

Instantly share code, notes, and snippets.

View hugg95's full-sized avatar
💭
等雨来

dengdeng hugg95

💭
等雨来
View GitHub Profile
@juanbrujo
juanbrujo / randomColor.less
Created July 9, 2014 02:46
Mixin to generate random color in LESS
.randomColor(){
@randomColor: `Math.floor(Math.random()*16777215).toString(16)`;
@colorHex: e(@randomColor);
@color: ~"#@{colorHex}";
}
// USE
body {
.randomColor();