Random Color Generator

#76010b Color

Color Codes
Hex Code #76010b
RGB Code rgb(118, 01, 11)
HSL Code hsl(355, 98%, 23%)

#76010b Color Syntax

rgb()

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

 main {
    background-color: rgb(118, 01, 11);
   }

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, 98%, 23%);
  }

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 #76010b

RGB Code Hex Code Preview
rgb(118, 01, 11, 10%) #76010b1a  
rgb(118, 01, 11, 20%) #76010b33  
rgb(118, 01, 11, 40%) #76010b4C  
rgb(118, 01, 11, 60%) #76010b99  
rgb(118, 01, 11, 80%) #76010bCC  
rgb(118, 01, 11, 100%) #76010bFF  

Saturated and desaturated colors of #76010b

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

#76010b Color Usage In CSS

 body {
    color: #76010b;
    }
 p {
    color: rgb(118, 01, 11);
    }
 header {
    border-bottom:1px solid #76010b;
    }
Recent Random Colors