Random Color Generator

#cbc044 Color

Color Codes
Hex Code #cbc044
RGB Code rgb(203, 192, 68)
HSL Code hsl(55, 56%, 53%)

#cbc044 Color Syntax

rgb()

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

 main {
    background-color: rgb(203, 192, 68);
   }

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(55, 56%, 53%);
  }

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

RGB Code Hex Code Preview
rgb(203, 192, 68, 10%) #cbc0441a  
rgb(203, 192, 68, 20%) #cbc04433  
rgb(203, 192, 68, 40%) #cbc0444C  
rgb(203, 192, 68, 60%) #cbc04499  
rgb(203, 192, 68, 80%) #cbc044CC  
rgb(203, 192, 68, 100%) #cbc044FF  

Saturated and desaturated colors of #cbc044

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

#cbc044 Color Usage In CSS

 body {
    color: #cbc044;
    }
 p {
    color: rgb(203, 192, 68);
    }
 header {
    border-bottom:1px solid #cbc044;
    }
Recent Random Colors