Random Color Generator

#d61090 Color

Color Codes
Hex Code #d61090
RGB Code rgb(214, 16, 144)
HSL Code hsl(321, 86%, 45%)

#d61090 Color Syntax

rgb()

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

 main {
    background-color: rgb(214, 16, 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, 86%, 45%);
  }

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

RGB Code Hex Code Preview
rgb(214, 16, 144, 10%) #d610901a  
rgb(214, 16, 144, 20%) #d6109033  
rgb(214, 16, 144, 40%) #d610904C  
rgb(214, 16, 144, 60%) #d6109099  
rgb(214, 16, 144, 80%) #d61090CC  
rgb(214, 16, 144, 100%) #d61090FF  

Saturated and desaturated colors of #d61090

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

#d61090 Color Usage In CSS

 body {
    color: #d61090;
    }
 p {
    color: rgb(214, 16, 144);
    }
 header {
    border-bottom:1px solid #d61090;
    }
Recent Random Colors