Random Color Generator

#8394c9 Color

Color Codes
Hex Code #8394c9
RGB Code rgb(131, 148, 201)
HSL Code hsl(225, 39%, 65%)

#8394c9 Color Syntax

rgb()

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

 main {
    background-color: rgb(131, 148, 201);
   }

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(225, 39%, 65%);
  }

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 #8394c9

RGB Code Hex Code Preview
rgb(131, 148, 201, 10%) #8394c91a  
rgb(131, 148, 201, 20%) #8394c933  
rgb(131, 148, 201, 40%) #8394c94C  
rgb(131, 148, 201, 60%) #8394c999  
rgb(131, 148, 201, 80%) #8394c9CC  
rgb(131, 148, 201, 100%) #8394c9FF  

Saturated and desaturated colors of #8394c9

HSL Code Preview
hsl(225, 10%, 65%)  
hsl(225, 20%, 65%)  
hsl(225, 40%, 65%)  
hsl(225, 60%, 65%)  
hsl(225, 80%, 65%)  
hsl(225, 100%, 65%)  

#8394c9 Color Usage In CSS

 body {
    color: #8394c9;
    }
 p {
    color: rgb(131, 148, 201);
    }
 header {
    border-bottom:1px solid #8394c9;
    }
Recent Random Colors