Random Color Generator

#0aa421 Color

Color Codes
Hex Code #0aa421
RGB Code rgb(10, 164, 33)
HSL Code hsl(129, 89%, 34%)

#0aa421 Color Syntax

rgb()

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

 main {
    background-color: rgb(10, 164, 33);
   }

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(129, 89%, 34%);
  }

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

RGB Code Hex Code Preview
rgb(10, 164, 33, 10%) #0aa4211a  
rgb(10, 164, 33, 20%) #0aa42133  
rgb(10, 164, 33, 40%) #0aa4214C  
rgb(10, 164, 33, 60%) #0aa42199  
rgb(10, 164, 33, 80%) #0aa421CC  
rgb(10, 164, 33, 100%) #0aa421FF  

Saturated and desaturated colors of #0aa421

HSL Code Preview
hsl(129, 10%, 34%)  
hsl(129, 20%, 34%)  
hsl(129, 40%, 34%)  
hsl(129, 60%, 34%)  
hsl(129, 80%, 34%)  
hsl(129, 100%, 34%)  

#0aa421 Color Usage In CSS

 body {
    color: #0aa421;
    }
 p {
    color: rgb(10, 164, 33);
    }
 header {
    border-bottom:1px solid #0aa421;
    }
Recent Random Colors