Random Color Generator

#ceae2b Color

Color Codes
Hex Code #ceae2b
RGB Code rgb(206, 174, 43)
HSL Code hsl(48, 65%, 49%)

#ceae2b Color Syntax

rgb()

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

 main {
    background-color: rgb(206, 174, 43);
   }

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(48, 65%, 49%);
  }

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

RGB Code Hex Code Preview
rgb(206, 174, 43, 10%) #ceae2b1a  
rgb(206, 174, 43, 20%) #ceae2b33  
rgb(206, 174, 43, 40%) #ceae2b4C  
rgb(206, 174, 43, 60%) #ceae2b99  
rgb(206, 174, 43, 80%) #ceae2bCC  
rgb(206, 174, 43, 100%) #ceae2bFF  

Saturated and desaturated colors of #ceae2b

HSL Code Preview
hsl(48, 10%, 49%)  
hsl(48, 20%, 49%)  
hsl(48, 40%, 49%)  
hsl(48, 60%, 49%)  
hsl(48, 80%, 49%)  
hsl(48, 100%, 49%)  

#ceae2b Color Usage In CSS

 body {
    color: #ceae2b;
    }
 p {
    color: rgb(206, 174, 43);
    }
 header {
    border-bottom:1px solid #ceae2b;
    }
Recent Random Colors