Random Color Generator

#3285ab Color

Color Codes
Hex Code #3285ab
RGB Code rgb(50, 133, 171)
HSL Code hsl(199, 55%, 43%)

#3285ab Color Syntax

rgb()

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

 main {
    background-color: rgb(50, 133, 171);
   }

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(199, 55%, 43%);
  }

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 #3285ab

RGB Code Hex Code Preview
rgb(50, 133, 171, 10%) #3285ab1a  
rgb(50, 133, 171, 20%) #3285ab33  
rgb(50, 133, 171, 40%) #3285ab4C  
rgb(50, 133, 171, 60%) #3285ab99  
rgb(50, 133, 171, 80%) #3285abCC  
rgb(50, 133, 171, 100%) #3285abFF  

Saturated and desaturated colors of #3285ab

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

#3285ab Color Usage In CSS

 body {
    color: #3285ab;
    }
 p {
    color: rgb(50, 133, 171);
    }
 header {
    border-bottom:1px solid #3285ab;
    }
Recent Random Colors