Random Color Generator

#cb934a Color

Color Codes
Hex Code #cb934a
RGB Code rgb(203, 147, 74)
HSL Code hsl(34, 55%, 54%)

#cb934a Color Syntax

rgb()

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

 main {
    background-color: rgb(203, 147, 74);
   }

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(34, 55%, 54%);
  }

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

RGB Code Hex Code Preview
rgb(203, 147, 74, 10%) #cb934a1a  
rgb(203, 147, 74, 20%) #cb934a33  
rgb(203, 147, 74, 40%) #cb934a4C  
rgb(203, 147, 74, 60%) #cb934a99  
rgb(203, 147, 74, 80%) #cb934aCC  
rgb(203, 147, 74, 100%) #cb934aFF  

Saturated and desaturated colors of #cb934a

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

#cb934a Color Usage In CSS

 body {
    color: #cb934a;
    }
 p {
    color: rgb(203, 147, 74);
    }
 header {
    border-bottom:1px solid #cb934a;
    }
Recent Random Colors