Random Color Generator

#35aded Color

Color Codes
Hex Code #35aded
RGB Code rgb(53, 173, 237)
HSL Code hsl(201, 84%, 57%)

#35aded Color Syntax

rgb()

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

 main {
    background-color: rgb(53, 173, 237);
   }

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(201, 84%, 57%);
  }

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 #35aded

RGB Code Hex Code Preview
rgb(53, 173, 237, 10%) #35aded1a  
rgb(53, 173, 237, 20%) #35aded33  
rgb(53, 173, 237, 40%) #35aded4C  
rgb(53, 173, 237, 60%) #35aded99  
rgb(53, 173, 237, 80%) #35adedCC  
rgb(53, 173, 237, 100%) #35adedFF  

Saturated and desaturated colors of #35aded

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

#35aded Color Usage In CSS

 body {
    color: #35aded;
    }
 p {
    color: rgb(53, 173, 237);
    }
 header {
    border-bottom:1px solid #35aded;
    }
Recent Random Colors