Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
プロジェクトの色を次のように設定しました。
$blue: rgb(75, 179, 209);
この変数を使用して、必要に応じて他の場所で値を RGBa に変換する方法はありますか?
rgbaインスタンスメソッドを使用する
あなたはできる
$blue: rgb(75, 179, 209); body { background:rgba($blue, .5); }
ここでテストできます:http ://sass-lang.com/try.html