Random Color Generator

#12c39f Color

Color Codes
Hex Code #12c39f
RGB Code rgb(18, 195, 159)
HSL Code hsl(168, 83%, 42%)

#12c39f Color Syntax

rgb()

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

 main {
    background-color: rgb(18, 195, 159);
   }

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, 83%, 42%);
  }

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 #12c39f

RGB Code Hex Code Preview
rgb(18, 195, 159, 10%) #12c39f1a  
rgb(18, 195, 159, 20%) #12c39f33  
rgb(18, 195, 159, 40%) #12c39f4C  
rgb(18, 195, 159, 60%) #12c39f99  
rgb(18, 195, 159, 80%) #12c39fCC  
rgb(18, 195, 159, 100%) #12c39fFF  

Saturated and desaturated colors of #12c39f

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

#12c39f Color Usage In CSS

 body {
    color: #12c39f;
    }
 p {
    color: rgb(18, 195, 159);
    }
 header {
    border-bottom:1px solid #12c39f;
    }
Recent Random Colors