Random Color Generator

#d5606a Color

Color Codes
Hex Code #d5606a
RGB Code rgb(213, 96, 106)
HSL Code hsl(355, 58%, 61%)

#d5606a Color Syntax

rgb()

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

 main {
    background-color: rgb(213, 96, 106);
   }

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

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

RGB Code Hex Code Preview
rgb(213, 96, 106, 10%) #d5606a1a  
rgb(213, 96, 106, 20%) #d5606a33  
rgb(213, 96, 106, 40%) #d5606a4C  
rgb(213, 96, 106, 60%) #d5606a99  
rgb(213, 96, 106, 80%) #d5606aCC  
rgb(213, 96, 106, 100%) #d5606aFF  

Saturated and desaturated colors of #d5606a

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

#d5606a Color Usage In CSS

 body {
    color: #d5606a;
    }
 p {
    color: rgb(213, 96, 106);
    }
 header {
    border-bottom:1px solid #d5606a;
    }
Recent Random Colors