Random Color Generator

#b488ed Color

Color Codes
Hex Code #b488ed
RGB Code rgb(180, 136, 237)
HSL Code hsl(266, 74%, 73%)

#b488ed Color Syntax

rgb()

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

 main {
    background-color: rgb(180, 136, 237);
   }

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(266, 74%, 73%);
  }

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

RGB Code Hex Code Preview
rgb(180, 136, 237, 10%) #b488ed1a  
rgb(180, 136, 237, 20%) #b488ed33  
rgb(180, 136, 237, 40%) #b488ed4C  
rgb(180, 136, 237, 60%) #b488ed99  
rgb(180, 136, 237, 80%) #b488edCC  
rgb(180, 136, 237, 100%) #b488edFF  

Saturated and desaturated colors of #b488ed

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

#b488ed Color Usage In CSS

 body {
    color: #b488ed;
    }
 p {
    color: rgb(180, 136, 237);
    }
 header {
    border-bottom:1px solid #b488ed;
    }
Recent Random Colors