Random Color Generator

#da50b3 Color

Color Codes
Hex Code #da50b3
RGB Code rgb(218, 80, 179)
HSL Code hsl(317, 65%, 58%)

#da50b3 Color Syntax

rgb()

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

 main {
    background-color: rgb(218, 80, 179);
   }

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(317, 65%, 58%);
  }

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

RGB Code Hex Code Preview
rgb(218, 80, 179, 10%) #da50b31a  
rgb(218, 80, 179, 20%) #da50b333  
rgb(218, 80, 179, 40%) #da50b34C  
rgb(218, 80, 179, 60%) #da50b399  
rgb(218, 80, 179, 80%) #da50b3CC  
rgb(218, 80, 179, 100%) #da50b3FF  

Saturated and desaturated colors of #da50b3

HSL Code Preview
hsl(317, 10%, 58%)  
hsl(317, 20%, 58%)  
hsl(317, 40%, 58%)  
hsl(317, 60%, 58%)  
hsl(317, 80%, 58%)  
hsl(317, 100%, 58%)  

#da50b3 Color Usage In CSS

 body {
    color: #da50b3;
    }
 p {
    color: rgb(218, 80, 179);
    }
 header {
    border-bottom:1px solid #da50b3;
    }
Recent Random Colors