Random Color Generator

#cbb69a Color

Color Codes
Hex Code #cbb69a
RGB Code rgb(203, 182, 154)
HSL Code hsl(34, 32%, 70%)

#cbb69a Color Syntax

rgb()

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

 main {
    background-color: rgb(203, 182, 154);
   }

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(34, 32%, 70%);
  }

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

RGB Code Hex Code Preview
rgb(203, 182, 154, 10%) #cbb69a1a  
rgb(203, 182, 154, 20%) #cbb69a33  
rgb(203, 182, 154, 40%) #cbb69a4C  
rgb(203, 182, 154, 60%) #cbb69a99  
rgb(203, 182, 154, 80%) #cbb69aCC  
rgb(203, 182, 154, 100%) #cbb69aFF  

Saturated and desaturated colors of #cbb69a

HSL Code Preview
hsl(34, 10%, 70%)  
hsl(34, 20%, 70%)  
hsl(34, 40%, 70%)  
hsl(34, 60%, 70%)  
hsl(34, 80%, 70%)  
hsl(34, 100%, 70%)  

#cbb69a Color Usage In CSS

 body {
    color: #cbb69a;
    }
 p {
    color: rgb(203, 182, 154);
    }
 header {
    border-bottom:1px solid #cbb69a;
    }
Recent Random Colors