Random Color Generator

#8a1980 Color

Color Codes
Hex Code #8a1980
RGB Code rgb(138, 25, 128)
HSL Code hsl(305, 69%, 32%)

#8a1980 Color Syntax

rgb()

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

 main {
    background-color: rgb(138, 25, 128);
   }

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(305, 69%, 32%);
  }

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 #8a1980

RGB Code Hex Code Preview
rgb(138, 25, 128, 10%) #8a19801a  
rgb(138, 25, 128, 20%) #8a198033  
rgb(138, 25, 128, 40%) #8a19804C  
rgb(138, 25, 128, 60%) #8a198099  
rgb(138, 25, 128, 80%) #8a1980CC  
rgb(138, 25, 128, 100%) #8a1980FF  

Saturated and desaturated colors of #8a1980

HSL Code Preview
hsl(305, 10%, 32%)  
hsl(305, 20%, 32%)  
hsl(305, 40%, 32%)  
hsl(305, 60%, 32%)  
hsl(305, 80%, 32%)  
hsl(305, 100%, 32%)  

#8a1980 Color Usage In CSS

 body {
    color: #8a1980;
    }
 p {
    color: rgb(138, 25, 128);
    }
 header {
    border-bottom:1px solid #8a1980;
    }
Recent Random Colors