Random Color Generator

#951ffe Color

Color Codes
Hex Code #951ffe
RGB Code rgb(149, 31, 254)
HSL Code hsl(272, 99%, 56%)

#951ffe Color Syntax

rgb()

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

 main {
    background-color: rgb(149, 31, 254);
   }

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

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 #951ffe

RGB Code Hex Code Preview
rgb(149, 31, 254, 10%) #951ffe1a  
rgb(149, 31, 254, 20%) #951ffe33  
rgb(149, 31, 254, 40%) #951ffe4C  
rgb(149, 31, 254, 60%) #951ffe99  
rgb(149, 31, 254, 80%) #951ffeCC  
rgb(149, 31, 254, 100%) #951ffeFF  

Saturated and desaturated colors of #951ffe

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

#951ffe Color Usage In CSS

 body {
    color: #951ffe;
    }
 p {
    color: rgb(149, 31, 254);
    }
 header {
    border-bottom:1px solid #951ffe;
    }
Recent Random Colors