Random Color Generator

#b555d3 Color

Color Codes
Hex Code #b555d3
RGB Code rgb(181, 85, 211)
HSL Code hsl(286, 59%, 58%)

#b555d3 Color Syntax

rgb()

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

 main {
    background-color: rgb(181, 85, 211);
   }

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(286, 59%, 58%);
  }

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

RGB Code Hex Code Preview
rgb(181, 85, 211, 10%) #b555d31a  
rgb(181, 85, 211, 20%) #b555d333  
rgb(181, 85, 211, 40%) #b555d34C  
rgb(181, 85, 211, 60%) #b555d399  
rgb(181, 85, 211, 80%) #b555d3CC  
rgb(181, 85, 211, 100%) #b555d3FF  

Saturated and desaturated colors of #b555d3

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

#b555d3 Color Usage In CSS

 body {
    color: #b555d3;
    }
 p {
    color: rgb(181, 85, 211);
    }
 header {
    border-bottom:1px solid #b555d3;
    }
Recent Random Colors