Random Color Generator

#12e762 Color

Color Codes
Hex Code #12e762
RGB Code rgb(18, 231, 98)
HSL Code hsl(143, 86%, 49%)

#12e762 Color Syntax

rgb()

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

 main {
    background-color: rgb(18, 231, 98);
   }

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(143, 86%, 49%);
  }

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

RGB Code Hex Code Preview
rgb(18, 231, 98, 10%) #12e7621a  
rgb(18, 231, 98, 20%) #12e76233  
rgb(18, 231, 98, 40%) #12e7624C  
rgb(18, 231, 98, 60%) #12e76299  
rgb(18, 231, 98, 80%) #12e762CC  
rgb(18, 231, 98, 100%) #12e762FF  

Saturated and desaturated colors of #12e762

HSL Code Preview
hsl(143, 10%, 49%)  
hsl(143, 20%, 49%)  
hsl(143, 40%, 49%)  
hsl(143, 60%, 49%)  
hsl(143, 80%, 49%)  
hsl(143, 100%, 49%)  

#12e762 Color Usage In CSS

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