Random Color Generator

#dc0449 Color

Color Codes
Hex Code #dc0449
RGB Code rgb(220, 04, 73)
HSL Code hsl(341, 96%, 44%)

#dc0449 Color Syntax

rgb()

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

 main {
    background-color: rgb(220, 04, 73);
   }

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(341, 96%, 44%);
  }

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

RGB Code Hex Code Preview
rgb(220, 04, 73, 10%) #dc04491a  
rgb(220, 04, 73, 20%) #dc044933  
rgb(220, 04, 73, 40%) #dc04494C  
rgb(220, 04, 73, 60%) #dc044999  
rgb(220, 04, 73, 80%) #dc0449CC  
rgb(220, 04, 73, 100%) #dc0449FF  

Saturated and desaturated colors of #dc0449

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

#dc0449 Color Usage In CSS

 body {
    color: #dc0449;
    }
 p {
    color: rgb(220, 04, 73);
    }
 header {
    border-bottom:1px solid #dc0449;
    }
Recent Random Colors