>>86
$red: 100;
$green: 254;
$blue: 10;

.test { color: rgb($red, $green, $blue); }

SASS の、rgb 関数を使ったら、以下のCSS に変換された

.test { color: #64fe0a; }