Random Color Generator

#3375d6 Color

Color Codes
Hex Code #3375d6
RGB Code rgb(51, 117, 214)
HSL Code hsl(216, 67%, 52%)

#3375d6 Color Syntax

rgb()

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

 main {
    background-color: rgb(51, 117, 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(216, 67%, 52%);
  }

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 #3375d6

RGB Code Hex Code Preview
rgb(51, 117, 214, 10%) #3375d61a  
rgb(51, 117, 214, 20%) #3375d633  
rgb(51, 117, 214, 40%) #3375d64C  
rgb(51, 117, 214, 60%) #3375d699  
rgb(51, 117, 214, 80%) #3375d6CC  
rgb(51, 117, 214, 100%) #3375d6FF  

Saturated and desaturated colors of #3375d6

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

#3375d6 Color Usage In CSS

 body {
    color: #3375d6;
    }
 p {
    color: rgb(51, 117, 214);
    }
 header {
    border-bottom:1px solid #3375d6;
    }
Recent Random Colors