Random Color Generator

#c83f96 Color

Color Codes
Hex Code #c83f96
RGB Code rgb(200, 63, 150)
HSL Code hsl(322, 55%, 52%)

#c83f96 Color Syntax

rgb()

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

 main {
    background-color: rgb(200, 63, 150);
   }

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(322, 55%, 52%);
  }

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

RGB Code Hex Code Preview
rgb(200, 63, 150, 10%) #c83f961a  
rgb(200, 63, 150, 20%) #c83f9633  
rgb(200, 63, 150, 40%) #c83f964C  
rgb(200, 63, 150, 60%) #c83f9699  
rgb(200, 63, 150, 80%) #c83f96CC  
rgb(200, 63, 150, 100%) #c83f96FF  

Saturated and desaturated colors of #c83f96

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

#c83f96 Color Usage In CSS

 body {
    color: #c83f96;
    }
 p {
    color: rgb(200, 63, 150);
    }
 header {
    border-bottom:1px solid #c83f96;
    }
Recent Random Colors