Random Color Generator

#c80095 Color

Color Codes
Hex Code #c80095
RGB Code rgb(200, 00, 149)
HSL Code hsl(315, 100%, 39%)

#c80095 Color Syntax

rgb()

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

 main {
    background-color: rgb(200, 00, 149);
   }

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(315, 100%, 39%);
  }

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

RGB Code Hex Code Preview
rgb(200, 00, 149, 10%) #c800951a  
rgb(200, 00, 149, 20%) #c8009533  
rgb(200, 00, 149, 40%) #c800954C  
rgb(200, 00, 149, 60%) #c8009599  
rgb(200, 00, 149, 80%) #c80095CC  
rgb(200, 00, 149, 100%) #c80095FF  

Saturated and desaturated colors of #c80095

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

#c80095 Color Usage In CSS

 body {
    color: #c80095;
    }
 p {
    color: rgb(200, 00, 149);
    }
 header {
    border-bottom:1px solid #c80095;
    }
Recent Random Colors