Random Color Generator

#481f82 Color

Color Codes
Hex Code #481f82
RGB Code rgb(72, 31, 130)
HSL Code hsl(265, 61%, 32%)

#481f82 Color Syntax

rgb()

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

 main {
    background-color: rgb(72, 31, 130);
   }

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(265, 61%, 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 #481f82

RGB Code Hex Code Preview
rgb(72, 31, 130, 10%) #481f821a  
rgb(72, 31, 130, 20%) #481f8233  
rgb(72, 31, 130, 40%) #481f824C  
rgb(72, 31, 130, 60%) #481f8299  
rgb(72, 31, 130, 80%) #481f82CC  
rgb(72, 31, 130, 100%) #481f82FF  

Saturated and desaturated colors of #481f82

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

#481f82 Color Usage In CSS

 body {
    color: #481f82;
    }
 p {
    color: rgb(72, 31, 130);
    }
 header {
    border-bottom:1px solid #481f82;
    }
Recent Random Colors