Random Color Generator

#bc1f05 Color

Color Codes
Hex Code #bc1f05
RGB Code rgb(188, 31, 05)
HSL Code hsl(9, 95%, 38%)

#bc1f05 Color Syntax

rgb()

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

 main {
    background-color: rgb(188, 31, 05);
   }

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(9, 95%, 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 #bc1f05

RGB Code Hex Code Preview
rgb(188, 31, 05, 10%) #bc1f051a  
rgb(188, 31, 05, 20%) #bc1f0533  
rgb(188, 31, 05, 40%) #bc1f054C  
rgb(188, 31, 05, 60%) #bc1f0599  
rgb(188, 31, 05, 80%) #bc1f05CC  
rgb(188, 31, 05, 100%) #bc1f05FF  

Saturated and desaturated colors of #bc1f05

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

#bc1f05 Color Usage In CSS

 body {
    color: #bc1f05;
    }
 p {
    color: rgb(188, 31, 05);
    }
 header {
    border-bottom:1px solid #bc1f05;
    }
Recent Random Colors