RUMI Colors
by Felipe Alfaro
HTML
<section>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</section>
SCSS
$color_contrast_lightest: rgb( 246,246,246 );
$color_contrast_light: rgb( 237,237,237 );
$color_contrast_middle: rgb( 200,200,200 );
$color_contrast_dark: rgb( 128,128,128 );
$color_contrast_darkest: rgb( 30,30,30 );
body{background: white;}
section{display: flex;width: 100%;}
section div{flex: 1 1;height: 150px;}
section div:nth-child(1){background: $color_contrast_lightest}
section div:nth-child(2){background: $color_contrast_light}
section div:nth-child(3){background: $color_contrast_middle}
section div:nth-child(4){background: $color_contrast_dark}
section div:nth-child(5){background: $color_contrast_darkest}
JavaScript
var foo;
var bar = !(!(foo) || !( foo.hasClass==false ));
alert( bar );