English 中文(简体)
Less - Color Blending Functions
  • 时间:2024-09-17

LESS - Color Blending Functions


Previous Page Next Page  

In this chapter, we will understand the Color Blending Functions in LESS. These are similar operations used in image editors pke Photoshop, Fireworks or GIMP, which matches your CSS colors to your images.

The following table shows the color blending functions used in LESS.

Sr.No. Functions & Description
1 multiply

It multippes two colors and returns a resultant color.

2 screen

It takes two colors and returns a brighter color. It works opposite of multiply function.

3 overlay

It generates result by combining the effect of multiply and screen.

4 softpght

It works similar to overlay but it uses only a part of the color, which soft-highpghts the other color.

5 hardpght

It works similar to overlay but the role of the colors reversed.

6 difference

It subtracts the second input color from the first input color.

7 exclusion

It works similar to difference function but with lower contrast.

8 average

It computes the average of two input colors on a per-channel (RGB) basis.

9 negation

It works opposite to difference function, which subtracts first color from second color.

Advertisements