Random Color Generator

#cd8132 Color

Color Codes
Hex Code #cd8132
RGB Code rgb(205, 129, 50)
HSL Code hsl(31, 61%, 50%)

#cd8132 Color Syntax

rgb()

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

 main {
    background-color: rgb(205, 129, 50);
   }

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(31, 61%, 50%);
  }

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 #cd8132

RGB Code Hex Code Preview
rgb(205, 129, 50, 10%) #cd81321a  
rgb(205, 129, 50, 20%) #cd813233  
rgb(205, 129, 50, 40%) #cd81324C  
rgb(205, 129, 50, 60%) #cd813299  
rgb(205, 129, 50, 80%) #cd8132CC  
rgb(205, 129, 50, 100%) #cd8132FF  

Saturated and desaturated colors of #cd8132

HSL Code Preview
hsl(31, 10%, 50%)  
hsl(31, 20%, 50%)  
hsl(31, 40%, 50%)  
hsl(31, 60%, 50%)  
hsl(31, 80%, 50%)  
hsl(31, 100%, 50%)  

#cd8132 Color Usage In CSS

 body {
    color: #cd8132;
    }
 p {
    color: rgb(205, 129, 50);
    }
 header {
    border-bottom:1px solid #cd8132;
    }
Recent Random Colors