Random Color Generator

#c55d20 Color

Color Codes
Hex Code #c55d20
RGB Code rgb(197, 93, 32)
HSL Code hsl(22, 72%, 45%)

#c55d20 Color Syntax

rgb()

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

 main {
    background-color: rgb(197, 93, 32);
   }

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(22, 72%, 45%);
  }

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

RGB Code Hex Code Preview
rgb(197, 93, 32, 10%) #c55d201a  
rgb(197, 93, 32, 20%) #c55d2033  
rgb(197, 93, 32, 40%) #c55d204C  
rgb(197, 93, 32, 60%) #c55d2099  
rgb(197, 93, 32, 80%) #c55d20CC  
rgb(197, 93, 32, 100%) #c55d20FF  

Saturated and desaturated colors of #c55d20

HSL Code Preview
hsl(22, 10%, 45%)  
hsl(22, 20%, 45%)  
hsl(22, 40%, 45%)  
hsl(22, 60%, 45%)  
hsl(22, 80%, 45%)  
hsl(22, 100%, 45%)  

#c55d20 Color Usage In CSS

 body {
    color: #c55d20;
    }
 p {
    color: rgb(197, 93, 32);
    }
 header {
    border-bottom:1px solid #c55d20;
    }
Recent Random Colors