Random Color Generator

#cebf4c Color

Color Codes
Hex Code #cebf4c
RGB Code rgb(206, 191, 76)
HSL Code hsl(53, 57%, 55%)

#cebf4c Color Syntax

rgb()

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

 main {
    background-color: rgb(206, 191, 76);
   }

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(53, 57%, 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 #cebf4c

RGB Code Hex Code Preview
rgb(206, 191, 76, 10%) #cebf4c1a  
rgb(206, 191, 76, 20%) #cebf4c33  
rgb(206, 191, 76, 40%) #cebf4c4C  
rgb(206, 191, 76, 60%) #cebf4c99  
rgb(206, 191, 76, 80%) #cebf4cCC  
rgb(206, 191, 76, 100%) #cebf4cFF  

Saturated and desaturated colors of #cebf4c

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

#cebf4c Color Usage In CSS

 body {
    color: #cebf4c;
    }
 p {
    color: rgb(206, 191, 76);
    }
 header {
    border-bottom:1px solid #cebf4c;
    }
Recent Random Colors