Random Color Generator

#d85fba Color

Color Codes
Hex Code #d85fba
RGB Code rgb(216, 95, 186)
HSL Code hsl(315, 61%, 61%)

#d85fba Color Syntax

rgb()

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

 main {
    background-color: rgb(216, 95, 186);
   }

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(315, 61%, 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 #d85fba

RGB Code Hex Code Preview
rgb(216, 95, 186, 10%) #d85fba1a  
rgb(216, 95, 186, 20%) #d85fba33  
rgb(216, 95, 186, 40%) #d85fba4C  
rgb(216, 95, 186, 60%) #d85fba99  
rgb(216, 95, 186, 80%) #d85fbaCC  
rgb(216, 95, 186, 100%) #d85fbaFF  

Saturated and desaturated colors of #d85fba

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

#d85fba Color Usage In CSS

 body {
    color: #d85fba;
    }
 p {
    color: rgb(216, 95, 186);
    }
 header {
    border-bottom:1px solid #d85fba;
    }
Recent Random Colors