Random Color Generator

#bc0293 Color

Color Codes
Hex Code #bc0293
RGB Code rgb(188, 02, 147)
HSL Code hsl(313, 98%, 37%)

#bc0293 Color Syntax

rgb()

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

 main {
    background-color: rgb(188, 02, 147);
   }

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(313, 98%, 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 #bc0293

RGB Code Hex Code Preview
rgb(188, 02, 147, 10%) #bc02931a  
rgb(188, 02, 147, 20%) #bc029333  
rgb(188, 02, 147, 40%) #bc02934C  
rgb(188, 02, 147, 60%) #bc029399  
rgb(188, 02, 147, 80%) #bc0293CC  
rgb(188, 02, 147, 100%) #bc0293FF  

Saturated and desaturated colors of #bc0293

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

#bc0293 Color Usage In CSS

 body {
    color: #bc0293;
    }
 p {
    color: rgb(188, 02, 147);
    }
 header {
    border-bottom:1px solid #bc0293;
    }
Recent Random Colors