Random Color Generator

#85e2af Color

Color Codes
Hex Code #85e2af
RGB Code rgb(133, 226, 175)
HSL Code hsl(147, 62%, 70%)

#85e2af Color Syntax

rgb()

 rgb(Red, Green, Blue);
 rgba(Red, Green, Blue, Alpha);

 main {
    background-color: rgb(133, 226, 175);
   }

R(red), G(green), B(blue) can be number between 0-255.
A parameter is a hex characters (0–9, A–F) and optional.

hsl()

 hsl(hue saturation lightness);
 hsl(hue saturation lightness / alpha);

 div {
  background-color: hsl(147, 62%, 70%);
  }

Saturation value is a percentage value between 0% unsaturated and 100% fully saturated.
Lightness value is a percentage value between 100% is white and 0% is black.

Lighter and darker colors of #85e2af

RGB Code Hex Code Preview
rgb(133, 226, 175, 10%) #85e2af1a  
rgb(133, 226, 175, 20%) #85e2af33  
rgb(133, 226, 175, 40%) #85e2af4C  
rgb(133, 226, 175, 60%) #85e2af99  
rgb(133, 226, 175, 80%) #85e2afCC  
rgb(133, 226, 175, 100%) #85e2afFF  

Saturated and desaturated colors of #85e2af

HSL Code Preview
hsl(147, 10%, 70%)  
hsl(147, 20%, 70%)  
hsl(147, 40%, 70%)  
hsl(147, 60%, 70%)  
hsl(147, 80%, 70%)  
hsl(147, 100%, 70%)  

#85e2af Color Usage In CSS

 body {
    color: #85e2af;
    }
 p {
    color: rgb(133, 226, 175);
    }
 header {
    border-bottom:1px solid #85e2af;
    }
Recent Random Colors