Random Color Generator

#bc2001 Color

Color Codes
Hex Code #bc2001
RGB Code rgb(188, 32, 01)
HSL Code hsl(10, 99%, 37%)

#bc2001 Color Syntax

rgb()

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

 main {
    background-color: rgb(188, 32, 01);
   }

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(10, 99%, 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 #bc2001

RGB Code Hex Code Preview
rgb(188, 32, 01, 10%) #bc20011a  
rgb(188, 32, 01, 20%) #bc200133  
rgb(188, 32, 01, 40%) #bc20014C  
rgb(188, 32, 01, 60%) #bc200199  
rgb(188, 32, 01, 80%) #bc2001CC  
rgb(188, 32, 01, 100%) #bc2001FF  

Saturated and desaturated colors of #bc2001

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

#bc2001 Color Usage In CSS

 body {
    color: #bc2001;
    }
 p {
    color: rgb(188, 32, 01);
    }
 header {
    border-bottom:1px solid #bc2001;
    }
Recent Random Colors