Random Color Generator

#327fff Color

Color Codes
Hex Code #327fff
RGB Code rgb(50, 127, 255)
HSL Code hsl(217, 100%, 60%)

#327fff Color Syntax

rgb()

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

 main {
    background-color: rgb(50, 127, 255);
   }

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(217, 100%, 60%);
  }

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 #327fff

RGB Code Hex Code Preview
rgb(50, 127, 255, 10%) #327fff1a  
rgb(50, 127, 255, 20%) #327fff33  
rgb(50, 127, 255, 40%) #327fff4C  
rgb(50, 127, 255, 60%) #327fff99  
rgb(50, 127, 255, 80%) #327fffCC  
rgb(50, 127, 255, 100%) #327fffFF  

Saturated and desaturated colors of #327fff

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

#327fff Color Usage In CSS

 body {
    color: #327fff;
    }
 p {
    color: rgb(50, 127, 255);
    }
 header {
    border-bottom:1px solid #327fff;
    }
Recent Random Colors