Random Color Generator

#734baa Color

Color Codes
Hex Code #734baa
RGB Code rgb(115, 75, 170)
HSL Code hsl(265, 39%, 48%)

#734baa Color Syntax

rgb()

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

 main {
    background-color: rgb(115, 75, 170);
   }

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, 39%, 48%);
  }

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 #734baa

RGB Code Hex Code Preview
rgb(115, 75, 170, 10%) #734baa1a  
rgb(115, 75, 170, 20%) #734baa33  
rgb(115, 75, 170, 40%) #734baa4C  
rgb(115, 75, 170, 60%) #734baa99  
rgb(115, 75, 170, 80%) #734baaCC  
rgb(115, 75, 170, 100%) #734baaFF  

Saturated and desaturated colors of #734baa

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

#734baa Color Usage In CSS

 body {
    color: #734baa;
    }
 p {
    color: rgb(115, 75, 170);
    }
 header {
    border-bottom:1px solid #734baa;
    }
Recent Random Colors