Random Color Generator

#cb8d50 Color

Color Codes
Hex Code #cb8d50
RGB Code rgb(203, 141, 80)
HSL Code hsl(30, 54%, 55%)

#cb8d50 Color Syntax

rgb()

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

 main {
    background-color: rgb(203, 141, 80);
   }

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

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

RGB Code Hex Code Preview
rgb(203, 141, 80, 10%) #cb8d501a  
rgb(203, 141, 80, 20%) #cb8d5033  
rgb(203, 141, 80, 40%) #cb8d504C  
rgb(203, 141, 80, 60%) #cb8d5099  
rgb(203, 141, 80, 80%) #cb8d50CC  
rgb(203, 141, 80, 100%) #cb8d50FF  

Saturated and desaturated colors of #cb8d50

HSL Code Preview
hsl(30, 10%, 55%)  
hsl(30, 20%, 55%)  
hsl(30, 40%, 55%)  
hsl(30, 60%, 55%)  
hsl(30, 80%, 55%)  
hsl(30, 100%, 55%)  

#cb8d50 Color Usage In CSS

 body {
    color: #cb8d50;
    }
 p {
    color: rgb(203, 141, 80);
    }
 header {
    border-bottom:1px solid #cb8d50;
    }
Recent Random Colors