Random Color Generator

#c68887 Color

Color Codes
Hex Code #c68887
RGB Code rgb(198, 136, 135)
HSL Code hsl(1, 36%, 65%)

#c68887 Color Syntax

rgb()

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

 main {
    background-color: rgb(198, 136, 135);
   }

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(1, 36%, 65%);
  }

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

RGB Code Hex Code Preview
rgb(198, 136, 135, 10%) #c688871a  
rgb(198, 136, 135, 20%) #c6888733  
rgb(198, 136, 135, 40%) #c688874C  
rgb(198, 136, 135, 60%) #c6888799  
rgb(198, 136, 135, 80%) #c68887CC  
rgb(198, 136, 135, 100%) #c68887FF  

Saturated and desaturated colors of #c68887

HSL Code Preview
hsl(1, 10%, 65%)  
hsl(1, 20%, 65%)  
hsl(1, 40%, 65%)  
hsl(1, 60%, 65%)  
hsl(1, 80%, 65%)  
hsl(1, 100%, 65%)  

#c68887 Color Usage In CSS

 body {
    color: #c68887;
    }
 p {
    color: rgb(198, 136, 135);
    }
 header {
    border-bottom:1px solid #c68887;
    }
Recent Random Colors