Random Color Generator

#cac68a Color

Color Codes
Hex Code #cac68a
RGB Code rgb(202, 198, 138)
HSL Code hsl(56, 38%, 67%)

#cac68a Color Syntax

rgb()

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

 main {
    background-color: rgb(202, 198, 138);
   }

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, 38%, 67%);
  }

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

RGB Code Hex Code Preview
rgb(202, 198, 138, 10%) #cac68a1a  
rgb(202, 198, 138, 20%) #cac68a33  
rgb(202, 198, 138, 40%) #cac68a4C  
rgb(202, 198, 138, 60%) #cac68a99  
rgb(202, 198, 138, 80%) #cac68aCC  
rgb(202, 198, 138, 100%) #cac68aFF  

Saturated and desaturated colors of #cac68a

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

#cac68a Color Usage In CSS

 body {
    color: #cac68a;
    }
 p {
    color: rgb(202, 198, 138);
    }
 header {
    border-bottom:1px solid #cac68a;
    }
Recent Random Colors