Languages
[Edit]
EN

CSS - invert color

0 points
Created by:
DrJoystick
615

In this article, we would like to show you how to invert element colors using CSS.

Quick solution:

.inverted {
  filter: invert(1);    /*	    <----- 100% inversion  */
}

.half-inverted {
  filter: invert(50%);  /*		<----- 50% inversion   */
}

 

Practical example

In this example, we present how to use the invert() filter with percentage and fractional values.

// ONLINE-RUNNER:browser;

<!doctype html>
<html>
<head>
  <style>
    
    img {
      height: 100px;
      margin: 5px;
    }
    
    .partly-inverted {
      filter: invert(0.25);  /*		<----- 25% inversion   */
    }

    .inverted {
      filter: invert(100%); /*	    <----- 100% inversion  */
    }

  </style>
</head>
<body style="display: flex">
  <img src="https://dirask.com/static/bucket/1574890428058-BZOQxN2D3p--image.png" />
  <img class="partly-inverted" src="https://dirask.com/static/bucket/1574890428058-BZOQxN2D3p--image.png" />
  <img class="inverted" src="https://dirask.com/static/bucket/1574890428058-BZOQxN2D3p--image.png" />
</body>
</html>

 

See also

  1. CSS - grayscale filter

References

  1. invert() - CSS: Cascading Style Sheets | MDN

Alternative titles

  1. CSS - color inversion
  2. CSS - invert colors (opposite color)
  3. CSS - colors inversion (opposite color)
  4. CSS - reverse colors (opposite color)
  5. CSS - reverse element colors (opposite color)
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.
Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join