Random Color Generator

#b61d43 Color

Color Codes
Hex Code #b61d43
RGB Code rgb(182, 29, 67)
HSL Code hsl(345, 73%, 41%)

#b61d43 Color Syntax

rgb()

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

 main {
    background-color: rgb(182, 29, 67);
   }

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, 73%, 41%);
  }

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

RGB Code Hex Code Preview
rgb(182, 29, 67, 10%) #b61d431a  
rgb(182, 29, 67, 20%) #b61d4333  
rgb(182, 29, 67, 40%) #b61d434C  
rgb(182, 29, 67, 60%) #b61d4399  
rgb(182, 29, 67, 80%) #b61d43CC  
rgb(182, 29, 67, 100%) #b61d43FF  

Saturated and desaturated colors of #b61d43

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

#b61d43 Color Usage In CSS

 body {
    color: #b61d43;
    }
 p {
    color: rgb(182, 29, 67);
    }
 header {
    border-bottom:1px solid #b61d43;
    }
Recent Random Colors