Random Color Generator

#75b421 Color

Color Codes
Hex Code #75b421
RGB Code rgb(117, 180, 33)
HSL Code hsl(86, 69%, 42%)

#75b421 Color Syntax

rgb()

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

 main {
    background-color: rgb(117, 180, 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(86, 69%, 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 #75b421

RGB Code Hex Code Preview
rgb(117, 180, 33, 10%) #75b4211a  
rgb(117, 180, 33, 20%) #75b42133  
rgb(117, 180, 33, 40%) #75b4214C  
rgb(117, 180, 33, 60%) #75b42199  
rgb(117, 180, 33, 80%) #75b421CC  
rgb(117, 180, 33, 100%) #75b421FF  

Saturated and desaturated colors of #75b421

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

#75b421 Color Usage In CSS

 body {
    color: #75b421;
    }
 p {
    color: rgb(117, 180, 33);
    }
 header {
    border-bottom:1px solid #75b421;
    }
Recent Random Colors