我很少使用screen($color1, $color2)
。
来自文档Do the opposite of multiply. The result is a brighter color.
http://lesscss.org/functions/#color-blending-screen
我正在寻找sass中的等价物。我可以用什么呢?
答案 0 :(得分:2)
在SASS中mix
module。
mix(#f00, #00f) => #7f007f
mix(#f00, #00f, 25%) => #3f00bf
mix(rgba(255, 0, 0, 0.5), #00f) => rgba(63, 0, 191, 0.75)