Random Color Generator

#392245 Color

Color Codes
Hex Code #392245
RGB Code rgb(57, 34, 69)
HSL Code hsl(279, 34%, 20%)

#392245 Color Syntax

rgb()

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

 main {
    background-color: rgb(57, 34, 69);
   }

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(279, 34%, 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 #392245

RGB Code Hex Code Preview
rgb(57, 34, 69, 10%) #3922451a  
rgb(57, 34, 69, 20%) #39224533  
rgb(57, 34, 69, 40%) #3922454C  
rgb(57, 34, 69, 60%) #39224599  
rgb(57, 34, 69, 80%) #392245CC  
rgb(57, 34, 69, 100%) #392245FF  

Saturated and desaturated colors of #392245

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

#392245 Color Usage In CSS

 body {
    color: #392245;
    }
 p {
    color: rgb(57, 34, 69);
    }
 header {
    border-bottom:1px solid #392245;
    }
Recent Random Colors