Random Color Generator

#c28b7d Color

Color Codes
Hex Code #c28b7d
RGB Code rgb(194, 139, 125)
HSL Code hsl(12, 36%, 63%)

#c28b7d Color Syntax

rgb()

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

 main {
    background-color: rgb(194, 139, 125);
   }

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(12, 36%, 63%);
  }

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

RGB Code Hex Code Preview
rgb(194, 139, 125, 10%) #c28b7d1a  
rgb(194, 139, 125, 20%) #c28b7d33  
rgb(194, 139, 125, 40%) #c28b7d4C  
rgb(194, 139, 125, 60%) #c28b7d99  
rgb(194, 139, 125, 80%) #c28b7dCC  
rgb(194, 139, 125, 100%) #c28b7dFF  

Saturated and desaturated colors of #c28b7d

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

#c28b7d Color Usage In CSS

 body {
    color: #c28b7d;
    }
 p {
    color: rgb(194, 139, 125);
    }
 header {
    border-bottom:1px solid #c28b7d;
    }
Recent Random Colors