Random Color Generator

#b43ddc Color

Color Codes
Hex Code #b43ddc
RGB Code rgb(180, 61, 220)
HSL Code hsl(285, 69%, 55%)

#b43ddc Color Syntax

rgb()

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

 main {
    background-color: rgb(180, 61, 220);
   }

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(285, 69%, 55%);
  }

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

RGB Code Hex Code Preview
rgb(180, 61, 220, 10%) #b43ddc1a  
rgb(180, 61, 220, 20%) #b43ddc33  
rgb(180, 61, 220, 40%) #b43ddc4C  
rgb(180, 61, 220, 60%) #b43ddc99  
rgb(180, 61, 220, 80%) #b43ddcCC  
rgb(180, 61, 220, 100%) #b43ddcFF  

Saturated and desaturated colors of #b43ddc

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

#b43ddc Color Usage In CSS

 body {
    color: #b43ddc;
    }
 p {
    color: rgb(180, 61, 220);
    }
 header {
    border-bottom:1px solid #b43ddc;
    }
Recent Random Colors