Random Color Generator

#8455ea Color

Color Codes
Hex Code #8455ea
RGB Code rgb(132, 85, 234)
HSL Code hsl(259, 78%, 63%)

#8455ea Color Syntax

rgb()

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

 main {
    background-color: rgb(132, 85, 234);
   }

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(259, 78%, 63%);
  }

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 #8455ea

RGB Code Hex Code Preview
rgb(132, 85, 234, 10%) #8455ea1a  
rgb(132, 85, 234, 20%) #8455ea33  
rgb(132, 85, 234, 40%) #8455ea4C  
rgb(132, 85, 234, 60%) #8455ea99  
rgb(132, 85, 234, 80%) #8455eaCC  
rgb(132, 85, 234, 100%) #8455eaFF  

Saturated and desaturated colors of #8455ea

HSL Code Preview
hsl(259, 10%, 63%)  
hsl(259, 20%, 63%)  
hsl(259, 40%, 63%)  
hsl(259, 60%, 63%)  
hsl(259, 80%, 63%)  
hsl(259, 100%, 63%)  

#8455ea Color Usage In CSS

 body {
    color: #8455ea;
    }
 p {
    color: rgb(132, 85, 234);
    }
 header {
    border-bottom:1px solid #8455ea;
    }
Recent Random Colors