0
外部設計師給了我們一個指示「這個顏色需要是原色」飽和度「的8%」他的意思是飽和度是8%。我怎麼能在scss中做到這一點,因爲我可以通過一定量飽和或去飽和?SCSS絕對飽和度
$saturation: saturation($primary);
// how can I calculate the amount?
$color1: saturate($primary, $amount);
$color2: desaturate($primary, $amount);
這兩者看起來都不起作用。