Random Color Generator

#c3c689 Color

Color Codes
Hex Code #c3c689
RGB Code rgb(195, 198, 137)
HSL Code hsl(63, 35%, 66%)

#c3c689 Color Syntax

rgb()

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

 main {
    background-color: rgb(195, 198, 137);
   }

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(63, 35%, 66%);
  }

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

RGB Code Hex Code Preview
rgb(195, 198, 137, 10%) #c3c6891a  
rgb(195, 198, 137, 20%) #c3c68933  
rgb(195, 198, 137, 40%) #c3c6894C  
rgb(195, 198, 137, 60%) #c3c68999  
rgb(195, 198, 137, 80%) #c3c689CC  
rgb(195, 198, 137, 100%) #c3c689FF  

Saturated and desaturated colors of #c3c689

HSL Code Preview
hsl(63, 10%, 66%)  
hsl(63, 20%, 66%)  
hsl(63, 40%, 66%)  
hsl(63, 60%, 66%)  
hsl(63, 80%, 66%)  
hsl(63, 100%, 66%)  

#c3c689 Color Usage In CSS

 body {
    color: #c3c689;
    }
 p {
    color: rgb(195, 198, 137);
    }
 header {
    border-bottom:1px solid #c3c689;
    }
Recent Random Colors