Random Color Generator

#b00613 Color

Color Codes
Hex Code #b00613
RGB Code rgb(176, 06, 19)
HSL Code hsl(355, 93%, 36%)

#b00613 Color Syntax

rgb()

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

 main {
    background-color: rgb(176, 06, 19);
   }

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(355, 93%, 36%);
  }

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

RGB Code Hex Code Preview
rgb(176, 06, 19, 10%) #b006131a  
rgb(176, 06, 19, 20%) #b0061333  
rgb(176, 06, 19, 40%) #b006134C  
rgb(176, 06, 19, 60%) #b0061399  
rgb(176, 06, 19, 80%) #b00613CC  
rgb(176, 06, 19, 100%) #b00613FF  

Saturated and desaturated colors of #b00613

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

#b00613 Color Usage In CSS

 body {
    color: #b00613;
    }
 p {
    color: rgb(176, 06, 19);
    }
 header {
    border-bottom:1px solid #b00613;
    }
Recent Random Colors