Random Color Generator

#cd7134 Color

Color Codes
Hex Code #cd7134
RGB Code rgb(205, 113, 52)
HSL Code hsl(24, 60%, 50%)

#cd7134 Color Syntax

rgb()

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

 main {
    background-color: rgb(205, 113, 52);
   }

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(24, 60%, 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 #cd7134

RGB Code Hex Code Preview
rgb(205, 113, 52, 10%) #cd71341a  
rgb(205, 113, 52, 20%) #cd713433  
rgb(205, 113, 52, 40%) #cd71344C  
rgb(205, 113, 52, 60%) #cd713499  
rgb(205, 113, 52, 80%) #cd7134CC  
rgb(205, 113, 52, 100%) #cd7134FF  

Saturated and desaturated colors of #cd7134

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

#cd7134 Color Usage In CSS

 body {
    color: #cd7134;
    }
 p {
    color: rgb(205, 113, 52);
    }
 header {
    border-bottom:1px solid #cd7134;
    }
Recent Random Colors