Random Color Generator

#c15d86 Color

Color Codes
Hex Code #c15d86
RGB Code rgb(193, 93, 134)
HSL Code hsl(335, 45%, 56%)

#c15d86 Color Syntax

rgb()

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

 main {
    background-color: rgb(193, 93, 134);
   }

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(335, 45%, 56%);
  }

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

RGB Code Hex Code Preview
rgb(193, 93, 134, 10%) #c15d861a  
rgb(193, 93, 134, 20%) #c15d8633  
rgb(193, 93, 134, 40%) #c15d864C  
rgb(193, 93, 134, 60%) #c15d8699  
rgb(193, 93, 134, 80%) #c15d86CC  
rgb(193, 93, 134, 100%) #c15d86FF  

Saturated and desaturated colors of #c15d86

HSL Code Preview
hsl(335, 10%, 56%)  
hsl(335, 20%, 56%)  
hsl(335, 40%, 56%)  
hsl(335, 60%, 56%)  
hsl(335, 80%, 56%)  
hsl(335, 100%, 56%)  

#c15d86 Color Usage In CSS

 body {
    color: #c15d86;
    }
 p {
    color: rgb(193, 93, 134);
    }
 header {
    border-bottom:1px solid #c15d86;
    }
Recent Random Colors