Random Color Generator

#d03d51 Color

Color Codes
Hex Code #d03d51
RGB Code rgb(208, 61, 81)
HSL Code hsl(352, 61%, 53%)

#d03d51 Color Syntax

rgb()

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

 main {
    background-color: rgb(208, 61, 81);
   }

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(352, 61%, 53%);
  }

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

RGB Code Hex Code Preview
rgb(208, 61, 81, 10%) #d03d511a  
rgb(208, 61, 81, 20%) #d03d5133  
rgb(208, 61, 81, 40%) #d03d514C  
rgb(208, 61, 81, 60%) #d03d5199  
rgb(208, 61, 81, 80%) #d03d51CC  
rgb(208, 61, 81, 100%) #d03d51FF  

Saturated and desaturated colors of #d03d51

HSL Code Preview
hsl(352, 10%, 53%)  
hsl(352, 20%, 53%)  
hsl(352, 40%, 53%)  
hsl(352, 60%, 53%)  
hsl(352, 80%, 53%)  
hsl(352, 100%, 53%)  

#d03d51 Color Usage In CSS

 body {
    color: #d03d51;
    }
 p {
    color: rgb(208, 61, 81);
    }
 header {
    border-bottom:1px solid #d03d51;
    }
Recent Random Colors