Random Color Generator

#cbad47 Color

Color Codes
Hex Code #cbad47
RGB Code rgb(203, 173, 71)
HSL Code hsl(46, 56%, 54%)

#cbad47 Color Syntax

rgb()

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

 main {
    background-color: rgb(203, 173, 71);
   }

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(46, 56%, 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 #cbad47

RGB Code Hex Code Preview
rgb(203, 173, 71, 10%) #cbad471a  
rgb(203, 173, 71, 20%) #cbad4733  
rgb(203, 173, 71, 40%) #cbad474C  
rgb(203, 173, 71, 60%) #cbad4799  
rgb(203, 173, 71, 80%) #cbad47CC  
rgb(203, 173, 71, 100%) #cbad47FF  

Saturated and desaturated colors of #cbad47

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

#cbad47 Color Usage In CSS

 body {
    color: #cbad47;
    }
 p {
    color: rgb(203, 173, 71);
    }
 header {
    border-bottom:1px solid #cbad47;
    }
Recent Random Colors