Random Color Generator

#362137 Color

Color Codes
Hex Code #362137
RGB Code rgb(54, 33, 55)
HSL Code hsl(297, 25%, 17%)

#362137 Color Syntax

rgb()

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

 main {
    background-color: rgb(54, 33, 55);
   }

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(297, 25%, 17%);
  }

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

RGB Code Hex Code Preview
rgb(54, 33, 55, 10%) #3621371a  
rgb(54, 33, 55, 20%) #36213733  
rgb(54, 33, 55, 40%) #3621374C  
rgb(54, 33, 55, 60%) #36213799  
rgb(54, 33, 55, 80%) #362137CC  
rgb(54, 33, 55, 100%) #362137FF  

Saturated and desaturated colors of #362137

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

#362137 Color Usage In CSS

 body {
    color: #362137;
    }
 p {
    color: rgb(54, 33, 55);
    }
 header {
    border-bottom:1px solid #362137;
    }
Recent Random Colors