Random Color Generator

#74ccc2 Color

Color Codes
Hex Code #74ccc2
RGB Code rgb(116, 204, 194)
HSL Code hsl(173, 46%, 63%)

#74ccc2 Color Syntax

rgb()

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

 main {
    background-color: rgb(116, 204, 194);
   }

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(173, 46%, 63%);
  }

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

RGB Code Hex Code Preview
rgb(116, 204, 194, 10%) #74ccc21a  
rgb(116, 204, 194, 20%) #74ccc233  
rgb(116, 204, 194, 40%) #74ccc24C  
rgb(116, 204, 194, 60%) #74ccc299  
rgb(116, 204, 194, 80%) #74ccc2CC  
rgb(116, 204, 194, 100%) #74ccc2FF  

Saturated and desaturated colors of #74ccc2

HSL Code Preview
hsl(173, 10%, 63%)  
hsl(173, 20%, 63%)  
hsl(173, 40%, 63%)  
hsl(173, 60%, 63%)  
hsl(173, 80%, 63%)  
hsl(173, 100%, 63%)  

#74ccc2 Color Usage In CSS

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