Random Color Generator

#c8b398 Color

Color Codes
Hex Code #c8b398
RGB Code rgb(200, 179, 152)
HSL Code hsl(34, 30%, 69%)

#c8b398 Color Syntax

rgb()

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

 main {
    background-color: rgb(200, 179, 152);
   }

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, 30%, 69%);
  }

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

RGB Code Hex Code Preview
rgb(200, 179, 152, 10%) #c8b3981a  
rgb(200, 179, 152, 20%) #c8b39833  
rgb(200, 179, 152, 40%) #c8b3984C  
rgb(200, 179, 152, 60%) #c8b39899  
rgb(200, 179, 152, 80%) #c8b398CC  
rgb(200, 179, 152, 100%) #c8b398FF  

Saturated and desaturated colors of #c8b398

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

#c8b398 Color Usage In CSS

 body {
    color: #c8b398;
    }
 p {
    color: rgb(200, 179, 152);
    }
 header {
    border-bottom:1px solid #c8b398;
    }
Recent Random Colors