Random Color Generator

#c03490 Color

Color Codes
Hex Code #c03490
RGB Code rgb(192, 52, 144)
HSL Code hsl(321, 57%, 48%)

#c03490 Color Syntax

rgb()

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

 main {
    background-color: rgb(192, 52, 144);
   }

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(321, 57%, 48%);
  }

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

RGB Code Hex Code Preview
rgb(192, 52, 144, 10%) #c034901a  
rgb(192, 52, 144, 20%) #c0349033  
rgb(192, 52, 144, 40%) #c034904C  
rgb(192, 52, 144, 60%) #c0349099  
rgb(192, 52, 144, 80%) #c03490CC  
rgb(192, 52, 144, 100%) #c03490FF  

Saturated and desaturated colors of #c03490

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

#c03490 Color Usage In CSS

 body {
    color: #c03490;
    }
 p {
    color: rgb(192, 52, 144);
    }
 header {
    border-bottom:1px solid #c03490;
    }
Recent Random Colors