Random Color Generator

#c69ba9 Color

Color Codes
Hex Code #c69ba9
RGB Code rgb(198, 155, 169)
HSL Code hsl(340, 27%, 69%)

#c69ba9 Color Syntax

rgb()

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

 main {
    background-color: rgb(198, 155, 169);
   }

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(340, 27%, 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 #c69ba9

RGB Code Hex Code Preview
rgb(198, 155, 169, 10%) #c69ba91a  
rgb(198, 155, 169, 20%) #c69ba933  
rgb(198, 155, 169, 40%) #c69ba94C  
rgb(198, 155, 169, 60%) #c69ba999  
rgb(198, 155, 169, 80%) #c69ba9CC  
rgb(198, 155, 169, 100%) #c69ba9FF  

Saturated and desaturated colors of #c69ba9

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

#c69ba9 Color Usage In CSS

 body {
    color: #c69ba9;
    }
 p {
    color: rgb(198, 155, 169);
    }
 header {
    border-bottom:1px solid #c69ba9;
    }
Recent Random Colors