Random Color Generator

#af52a7 Color

Color Codes
Hex Code #af52a7
RGB Code rgb(175, 82, 167)
HSL Code hsl(305, 37%, 50%)

#af52a7 Color Syntax

rgb()

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

 main {
    background-color: rgb(175, 82, 167);
   }

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, 37%, 50%);
  }

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

RGB Code Hex Code Preview
rgb(175, 82, 167, 10%) #af52a71a  
rgb(175, 82, 167, 20%) #af52a733  
rgb(175, 82, 167, 40%) #af52a74C  
rgb(175, 82, 167, 60%) #af52a799  
rgb(175, 82, 167, 80%) #af52a7CC  
rgb(175, 82, 167, 100%) #af52a7FF  

Saturated and desaturated colors of #af52a7

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

#af52a7 Color Usage In CSS

 body {
    color: #af52a7;
    }
 p {
    color: rgb(175, 82, 167);
    }
 header {
    border-bottom:1px solid #af52a7;
    }
Recent Random Colors