Random Color Generator

#995dce Color

Color Codes
Hex Code #995dce
RGB Code rgb(153, 93, 206)
HSL Code hsl(272, 54%, 59%)

#995dce Color Syntax

rgb()

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

 main {
    background-color: rgb(153, 93, 206);
   }

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(272, 54%, 59%);
  }

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 #995dce

RGB Code Hex Code Preview
rgb(153, 93, 206, 10%) #995dce1a  
rgb(153, 93, 206, 20%) #995dce33  
rgb(153, 93, 206, 40%) #995dce4C  
rgb(153, 93, 206, 60%) #995dce99  
rgb(153, 93, 206, 80%) #995dceCC  
rgb(153, 93, 206, 100%) #995dceFF  

Saturated and desaturated colors of #995dce

HSL Code Preview
hsl(272, 10%, 59%)  
hsl(272, 20%, 59%)  
hsl(272, 40%, 59%)  
hsl(272, 60%, 59%)  
hsl(272, 80%, 59%)  
hsl(272, 100%, 59%)  

#995dce Color Usage In CSS

 body {
    color: #995dce;
    }
 p {
    color: rgb(153, 93, 206);
    }
 header {
    border-bottom:1px solid #995dce;
    }
Recent Random Colors