Random Color Generator

#3478d7 Color

Color Codes
Hex Code #3478d7
RGB Code rgb(52, 120, 215)
HSL Code hsl(215, 67%, 52%)

#3478d7 Color Syntax

rgb()

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

 main {
    background-color: rgb(52, 120, 215);
   }

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(215, 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 #3478d7

RGB Code Hex Code Preview
rgb(52, 120, 215, 10%) #3478d71a  
rgb(52, 120, 215, 20%) #3478d733  
rgb(52, 120, 215, 40%) #3478d74C  
rgb(52, 120, 215, 60%) #3478d799  
rgb(52, 120, 215, 80%) #3478d7CC  
rgb(52, 120, 215, 100%) #3478d7FF  

Saturated and desaturated colors of #3478d7

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

#3478d7 Color Usage In CSS

 body {
    color: #3478d7;
    }
 p {
    color: rgb(52, 120, 215);
    }
 header {
    border-bottom:1px solid #3478d7;
    }
Recent Random Colors