Random Color Generator

#390064 Color

Color Codes
Hex Code #390064
RGB Code rgb(57, 00, 100)
HSL Code hsl(274, 100%, 20%)

#390064 Color Syntax

rgb()

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

 main {
    background-color: rgb(57, 00, 100);
   }

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(274, 100%, 20%);
  }

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

RGB Code Hex Code Preview
rgb(57, 00, 100, 10%) #3900641a  
rgb(57, 00, 100, 20%) #39006433  
rgb(57, 00, 100, 40%) #3900644C  
rgb(57, 00, 100, 60%) #39006499  
rgb(57, 00, 100, 80%) #390064CC  
rgb(57, 00, 100, 100%) #390064FF  

Saturated and desaturated colors of #390064

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

#390064 Color Usage In CSS

 body {
    color: #390064;
    }
 p {
    color: rgb(57, 00, 100);
    }
 header {
    border-bottom:1px solid #390064;
    }
Recent Random Colors