Random Color Generator

#12be15 Color

Color Codes
Hex Code #12be15
RGB Code rgb(18, 190, 21)
HSL Code hsl(121, 83%, 41%)

#12be15 Color Syntax

rgb()

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

 main {
    background-color: rgb(18, 190, 21);
   }

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(121, 83%, 41%);
  }

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

RGB Code Hex Code Preview
rgb(18, 190, 21, 10%) #12be151a  
rgb(18, 190, 21, 20%) #12be1533  
rgb(18, 190, 21, 40%) #12be154C  
rgb(18, 190, 21, 60%) #12be1599  
rgb(18, 190, 21, 80%) #12be15CC  
rgb(18, 190, 21, 100%) #12be15FF  

Saturated and desaturated colors of #12be15

HSL Code Preview
hsl(121, 10%, 41%)  
hsl(121, 20%, 41%)  
hsl(121, 40%, 41%)  
hsl(121, 60%, 41%)  
hsl(121, 80%, 41%)  
hsl(121, 100%, 41%)  

#12be15 Color Usage In CSS

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