Random Color Generator

#b62437 Color

Color Codes
Hex Code #b62437
RGB Code rgb(182, 36, 55)
HSL Code hsl(352, 67%, 43%)

#b62437 Color Syntax

rgb()

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

 main {
    background-color: rgb(182, 36, 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(352, 67%, 43%);
  }

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

RGB Code Hex Code Preview
rgb(182, 36, 55, 10%) #b624371a  
rgb(182, 36, 55, 20%) #b6243733  
rgb(182, 36, 55, 40%) #b624374C  
rgb(182, 36, 55, 60%) #b6243799  
rgb(182, 36, 55, 80%) #b62437CC  
rgb(182, 36, 55, 100%) #b62437FF  

Saturated and desaturated colors of #b62437

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

#b62437 Color Usage In CSS

 body {
    color: #b62437;
    }
 p {
    color: rgb(182, 36, 55);
    }
 header {
    border-bottom:1px solid #b62437;
    }
Recent Random Colors