_rgba-to-hex

rgba から hex 値へ色を変換します。

引数初期値説明
_rgba-to-hex($color, $background);
$colorColorrgba() 関数で指定された色
$backgroundColor#fff16進数表記の色

rgbaからhexへ変換

@debug _rgba-to-hex(rgba(255, 1, 1, .4));
// => #ff9999

@debug _rgba-to-hex(rgba(255, 1, 1, .4), #fafafa);
// => #fc9696