Random Color Generator

#b490d6 Color

Color Codes
Hex Code #b490d6
RGB Code rgb(180, 144, 214)
HSL Code hsl(271, 46%, 70%)

#b490d6 Color Syntax

rgb()

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

 main {
    background-color: rgb(180, 144, 214);
   }

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(271, 46%, 70%);
  }

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

RGB Code Hex Code Preview
rgb(180, 144, 214, 10%) #b490d61a  
rgb(180, 144, 214, 20%) #b490d633  
rgb(180, 144, 214, 40%) #b490d64C  
rgb(180, 144, 214, 60%) #b490d699  
rgb(180, 144, 214, 80%) #b490d6CC  
rgb(180, 144, 214, 100%) #b490d6FF  

Saturated and desaturated colors of #b490d6

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

#b490d6 Color Usage In CSS

 body {
    color: #b490d6;
    }
 p {
    color: rgb(180, 144, 214);
    }
 header {
    border-bottom:1px solid #b490d6;
    }
Recent Random Colors