Random Color Generator

#74e0cb Color

Color Codes
Hex Code #74e0cb
RGB Code rgb(116, 224, 203)
HSL Code hsl(168, 64%, 67%)

#74e0cb Color Syntax

rgb()

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

 main {
    background-color: rgb(116, 224, 203);
   }

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(168, 64%, 67%);
  }

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 #74e0cb

RGB Code Hex Code Preview
rgb(116, 224, 203, 10%) #74e0cb1a  
rgb(116, 224, 203, 20%) #74e0cb33  
rgb(116, 224, 203, 40%) #74e0cb4C  
rgb(116, 224, 203, 60%) #74e0cb99  
rgb(116, 224, 203, 80%) #74e0cbCC  
rgb(116, 224, 203, 100%) #74e0cbFF  

Saturated and desaturated colors of #74e0cb

HSL Code Preview
hsl(168, 10%, 67%)  
hsl(168, 20%, 67%)  
hsl(168, 40%, 67%)  
hsl(168, 60%, 67%)  
hsl(168, 80%, 67%)  
hsl(168, 100%, 67%)  

#74e0cb Color Usage In CSS

 body {
    color: #74e0cb;
    }
 p {
    color: rgb(116, 224, 203);
    }
 header {
    border-bottom:1px solid #74e0cb;
    }
Recent Random Colors