Random Color Generator

#b81014 Color

Color Codes
Hex Code #b81014
RGB Code rgb(184, 16, 20)
HSL Code hsl(359, 84%, 39%)

#b81014 Color Syntax

rgb()

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

 main {
    background-color: rgb(184, 16, 20);
   }

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(359, 84%, 39%);
  }

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

RGB Code Hex Code Preview
rgb(184, 16, 20, 10%) #b810141a  
rgb(184, 16, 20, 20%) #b8101433  
rgb(184, 16, 20, 40%) #b810144C  
rgb(184, 16, 20, 60%) #b8101499  
rgb(184, 16, 20, 80%) #b81014CC  
rgb(184, 16, 20, 100%) #b81014FF  

Saturated and desaturated colors of #b81014

HSL Code Preview
hsl(359, 10%, 39%)  
hsl(359, 20%, 39%)  
hsl(359, 40%, 39%)  
hsl(359, 60%, 39%)  
hsl(359, 80%, 39%)  
hsl(359, 100%, 39%)  

#b81014 Color Usage In CSS

 body {
    color: #b81014;
    }
 p {
    color: rgb(184, 16, 20);
    }
 header {
    border-bottom:1px solid #b81014;
    }
Recent Random Colors