Random Color Generator

#a95ac5 Color

Color Codes
Hex Code #a95ac5
RGB Code rgb(169, 90, 197)
HSL Code hsl(284, 48%, 56%)

#a95ac5 Color Syntax

rgb()

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

 main {
    background-color: rgb(169, 90, 197);
   }

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(284, 48%, 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 #a95ac5

RGB Code Hex Code Preview
rgb(169, 90, 197, 10%) #a95ac51a  
rgb(169, 90, 197, 20%) #a95ac533  
rgb(169, 90, 197, 40%) #a95ac54C  
rgb(169, 90, 197, 60%) #a95ac599  
rgb(169, 90, 197, 80%) #a95ac5CC  
rgb(169, 90, 197, 100%) #a95ac5FF  

Saturated and desaturated colors of #a95ac5

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

#a95ac5 Color Usage In CSS

 body {
    color: #a95ac5;
    }
 p {
    color: rgb(169, 90, 197);
    }
 header {
    border-bottom:1px solid #a95ac5;
    }
Recent Random Colors