Random Color Generator

#bc1e03 Color

Color Codes
Hex Code #bc1e03
RGB Code rgb(188, 30, 03)
HSL Code hsl(9, 97%, 37%)

#bc1e03 Color Syntax

rgb()

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

 main {
    background-color: rgb(188, 30, 03);
   }

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, 97%, 37%);
  }

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

RGB Code Hex Code Preview
rgb(188, 30, 03, 10%) #bc1e031a  
rgb(188, 30, 03, 20%) #bc1e0333  
rgb(188, 30, 03, 40%) #bc1e034C  
rgb(188, 30, 03, 60%) #bc1e0399  
rgb(188, 30, 03, 80%) #bc1e03CC  
rgb(188, 30, 03, 100%) #bc1e03FF  

Saturated and desaturated colors of #bc1e03

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

#bc1e03 Color Usage In CSS

 body {
    color: #bc1e03;
    }
 p {
    color: rgb(188, 30, 03);
    }
 header {
    border-bottom:1px solid #bc1e03;
    }
Recent Random Colors