Random Color Generator

#125a25 Color

Color Codes
Hex Code #125a25
RGB Code rgb(18, 90, 37)
HSL Code hsl(136, 67%, 21%)

#125a25 Color Syntax

rgb()

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

 main {
    background-color: rgb(18, 90, 37);
   }

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(136, 67%, 21%);
  }

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 #125a25

RGB Code Hex Code Preview
rgb(18, 90, 37, 10%) #125a251a  
rgb(18, 90, 37, 20%) #125a2533  
rgb(18, 90, 37, 40%) #125a254C  
rgb(18, 90, 37, 60%) #125a2599  
rgb(18, 90, 37, 80%) #125a25CC  
rgb(18, 90, 37, 100%) #125a25FF  

Saturated and desaturated colors of #125a25

HSL Code Preview
hsl(136, 10%, 21%)  
hsl(136, 20%, 21%)  
hsl(136, 40%, 21%)  
hsl(136, 60%, 21%)  
hsl(136, 80%, 21%)  
hsl(136, 100%, 21%)  

#125a25 Color Usage In CSS

 body {
    color: #125a25;
    }
 p {
    color: rgb(18, 90, 37);
    }
 header {
    border-bottom:1px solid #125a25;
    }
Recent Random Colors