Random Color Generator

#732aa3 Color

Color Codes
Hex Code #732aa3
RGB Code rgb(115, 42, 163)
HSL Code hsl(276, 59%, 40%)

#732aa3 Color Syntax

rgb()

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

 main {
    background-color: rgb(115, 42, 163);
   }

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(276, 59%, 40%);
  }

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 #732aa3

RGB Code Hex Code Preview
rgb(115, 42, 163, 10%) #732aa31a  
rgb(115, 42, 163, 20%) #732aa333  
rgb(115, 42, 163, 40%) #732aa34C  
rgb(115, 42, 163, 60%) #732aa399  
rgb(115, 42, 163, 80%) #732aa3CC  
rgb(115, 42, 163, 100%) #732aa3FF  

Saturated and desaturated colors of #732aa3

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

#732aa3 Color Usage In CSS

 body {
    color: #732aa3;
    }
 p {
    color: rgb(115, 42, 163);
    }
 header {
    border-bottom:1px solid #732aa3;
    }
Recent Random Colors