Random Color Generator

#b60e39 Color

Color Codes
Hex Code #b60e39
RGB Code rgb(182, 14, 57)
HSL Code hsl(345, 86%, 38%)

#b60e39 Color Syntax

rgb()

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

 main {
    background-color: rgb(182, 14, 57);
   }

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(345, 86%, 38%);
  }

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

RGB Code Hex Code Preview
rgb(182, 14, 57, 10%) #b60e391a  
rgb(182, 14, 57, 20%) #b60e3933  
rgb(182, 14, 57, 40%) #b60e394C  
rgb(182, 14, 57, 60%) #b60e3999  
rgb(182, 14, 57, 80%) #b60e39CC  
rgb(182, 14, 57, 100%) #b60e39FF  

Saturated and desaturated colors of #b60e39

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

#b60e39 Color Usage In CSS

 body {
    color: #b60e39;
    }
 p {
    color: rgb(182, 14, 57);
    }
 header {
    border-bottom:1px solid #b60e39;
    }
Recent Random Colors