Random Color Generator

#c182a4 Color

Color Codes
Hex Code #c182a4
RGB Code rgb(193, 130, 164)
HSL Code hsl(328, 34%, 63%)

#c182a4 Color Syntax

rgb()

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

 main {
    background-color: rgb(193, 130, 164);
   }

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(328, 34%, 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 #c182a4

RGB Code Hex Code Preview
rgb(193, 130, 164, 10%) #c182a41a  
rgb(193, 130, 164, 20%) #c182a433  
rgb(193, 130, 164, 40%) #c182a44C  
rgb(193, 130, 164, 60%) #c182a499  
rgb(193, 130, 164, 80%) #c182a4CC  
rgb(193, 130, 164, 100%) #c182a4FF  

Saturated and desaturated colors of #c182a4

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

#c182a4 Color Usage In CSS

 body {
    color: #c182a4;
    }
 p {
    color: rgb(193, 130, 164);
    }
 header {
    border-bottom:1px solid #c182a4;
    }
Recent Random Colors