Random Color Generator

#349ad4 Color

Color Codes
Hex Code #349ad4
RGB Code rgb(52, 154, 212)
HSL Code hsl(202, 65%, 52%)

#349ad4 Color Syntax

rgb()

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

 main {
    background-color: rgb(52, 154, 212);
   }

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(202, 65%, 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 #349ad4

RGB Code Hex Code Preview
rgb(52, 154, 212, 10%) #349ad41a  
rgb(52, 154, 212, 20%) #349ad433  
rgb(52, 154, 212, 40%) #349ad44C  
rgb(52, 154, 212, 60%) #349ad499  
rgb(52, 154, 212, 80%) #349ad4CC  
rgb(52, 154, 212, 100%) #349ad4FF  

Saturated and desaturated colors of #349ad4

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

#349ad4 Color Usage In CSS

 body {
    color: #349ad4;
    }
 p {
    color: rgb(52, 154, 212);
    }
 header {
    border-bottom:1px solid #349ad4;
    }
Recent Random Colors