Random Color Generator

#d04c58 Color

Color Codes
Hex Code #d04c58
RGB Code rgb(208, 76, 88)
HSL Code hsl(355, 58%, 56%)

#d04c58 Color Syntax

rgb()

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

 main {
    background-color: rgb(208, 76, 88);
   }

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(355, 58%, 56%);
  }

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

RGB Code Hex Code Preview
rgb(208, 76, 88, 10%) #d04c581a  
rgb(208, 76, 88, 20%) #d04c5833  
rgb(208, 76, 88, 40%) #d04c584C  
rgb(208, 76, 88, 60%) #d04c5899  
rgb(208, 76, 88, 80%) #d04c58CC  
rgb(208, 76, 88, 100%) #d04c58FF  

Saturated and desaturated colors of #d04c58

HSL Code Preview
hsl(355, 10%, 56%)  
hsl(355, 20%, 56%)  
hsl(355, 40%, 56%)  
hsl(355, 60%, 56%)  
hsl(355, 80%, 56%)  
hsl(355, 100%, 56%)  

#d04c58 Color Usage In CSS

 body {
    color: #d04c58;
    }
 p {
    color: rgb(208, 76, 88);
    }
 header {
    border-bottom:1px solid #d04c58;
    }
Recent Random Colors