Random Color Generator

#a000d6 Color

Color Codes
Hex Code #a000d6
RGB Code rgb(160, 00, 214)
HSL Code hsl(285, 100%, 42%)

#a000d6 Color Syntax

rgb()

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

 main {
    background-color: rgb(160, 00, 214);
   }

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(285, 100%, 42%);
  }

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

RGB Code Hex Code Preview
rgb(160, 00, 214, 10%) #a000d61a  
rgb(160, 00, 214, 20%) #a000d633  
rgb(160, 00, 214, 40%) #a000d64C  
rgb(160, 00, 214, 60%) #a000d699  
rgb(160, 00, 214, 80%) #a000d6CC  
rgb(160, 00, 214, 100%) #a000d6FF  

Saturated and desaturated colors of #a000d6

HSL Code Preview
hsl(285, 10%, 42%)  
hsl(285, 20%, 42%)  
hsl(285, 40%, 42%)  
hsl(285, 60%, 42%)  
hsl(285, 80%, 42%)  
hsl(285, 100%, 42%)  

#a000d6 Color Usage In CSS

 body {
    color: #a000d6;
    }
 p {
    color: rgb(160, 00, 214);
    }
 header {
    border-bottom:1px solid #a000d6;
    }
Recent Random Colors