Random Color Generator

#3886fa Color

Color Codes
Hex Code #3886fa
RGB Code rgb(56, 134, 250)
HSL Code hsl(216, 95%, 60%)

#3886fa Color Syntax

rgb()

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

 main {
    background-color: rgb(56, 134, 250);
   }

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, 95%, 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 #3886fa

RGB Code Hex Code Preview
rgb(56, 134, 250, 10%) #3886fa1a  
rgb(56, 134, 250, 20%) #3886fa33  
rgb(56, 134, 250, 40%) #3886fa4C  
rgb(56, 134, 250, 60%) #3886fa99  
rgb(56, 134, 250, 80%) #3886faCC  
rgb(56, 134, 250, 100%) #3886faFF  

Saturated and desaturated colors of #3886fa

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

#3886fa Color Usage In CSS

 body {
    color: #3886fa;
    }
 p {
    color: rgb(56, 134, 250);
    }
 header {
    border-bottom:1px solid #3886fa;
    }
Recent Random Colors