Random Color Generator

#cbc78f Color

Color Codes
Hex Code #cbc78f
RGB Code rgb(203, 199, 143)
HSL Code hsl(56, 37%, 68%)

#cbc78f Color Syntax

rgb()

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

 main {
    background-color: rgb(203, 199, 143);
   }

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(56, 37%, 68%);
  }

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

RGB Code Hex Code Preview
rgb(203, 199, 143, 10%) #cbc78f1a  
rgb(203, 199, 143, 20%) #cbc78f33  
rgb(203, 199, 143, 40%) #cbc78f4C  
rgb(203, 199, 143, 60%) #cbc78f99  
rgb(203, 199, 143, 80%) #cbc78fCC  
rgb(203, 199, 143, 100%) #cbc78fFF  

Saturated and desaturated colors of #cbc78f

HSL Code Preview
hsl(56, 10%, 68%)  
hsl(56, 20%, 68%)  
hsl(56, 40%, 68%)  
hsl(56, 60%, 68%)  
hsl(56, 80%, 68%)  
hsl(56, 100%, 68%)  

#cbc78f Color Usage In CSS

 body {
    color: #cbc78f;
    }
 p {
    color: rgb(203, 199, 143);
    }
 header {
    border-bottom:1px solid #cbc78f;
    }
Recent Random Colors