Random Color Generator

#c17181 Color

Color Codes
Hex Code #c17181
RGB Code rgb(193, 113, 129)
HSL Code hsl(348, 39%, 60%)

#c17181 Color Syntax

rgb()

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

 main {
    background-color: rgb(193, 113, 129);
   }

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(348, 39%, 60%);
  }

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

RGB Code Hex Code Preview
rgb(193, 113, 129, 10%) #c171811a  
rgb(193, 113, 129, 20%) #c1718133  
rgb(193, 113, 129, 40%) #c171814C  
rgb(193, 113, 129, 60%) #c1718199  
rgb(193, 113, 129, 80%) #c17181CC  
rgb(193, 113, 129, 100%) #c17181FF  

Saturated and desaturated colors of #c17181

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

#c17181 Color Usage In CSS

 body {
    color: #c17181;
    }
 p {
    color: rgb(193, 113, 129);
    }
 header {
    border-bottom:1px solid #c17181;
    }
Recent Random Colors