Random Color Generator

#0cf9d6 Color

Color Codes
Hex Code #0cf9d6
RGB Code rgb(12, 249, 214)
HSL Code hsl(171, 95%, 51%)

#0cf9d6 Color Syntax

rgb()

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

 main {
    background-color: rgb(12, 249, 214);
   }

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(171, 95%, 51%);
  }

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 #0cf9d6

RGB Code Hex Code Preview
rgb(12, 249, 214, 10%) #0cf9d61a  
rgb(12, 249, 214, 20%) #0cf9d633  
rgb(12, 249, 214, 40%) #0cf9d64C  
rgb(12, 249, 214, 60%) #0cf9d699  
rgb(12, 249, 214, 80%) #0cf9d6CC  
rgb(12, 249, 214, 100%) #0cf9d6FF  

Saturated and desaturated colors of #0cf9d6

HSL Code Preview
hsl(171, 10%, 51%)  
hsl(171, 20%, 51%)  
hsl(171, 40%, 51%)  
hsl(171, 60%, 51%)  
hsl(171, 80%, 51%)  
hsl(171, 100%, 51%)  

#0cf9d6 Color Usage In CSS

 body {
    color: #0cf9d6;
    }
 p {
    color: rgb(12, 249, 214);
    }
 header {
    border-bottom:1px solid #0cf9d6;
    }
Recent Random Colors