Random Color Generator

#53acef Color

Color Codes
Hex Code #53acef
RGB Code rgb(83, 172, 239)
HSL Code hsl(206, 83%, 63%)

#53acef Color Syntax

rgb()

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

 main {
    background-color: rgb(83, 172, 239);
   }

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(206, 83%, 63%);
  }

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 #53acef

RGB Code Hex Code Preview
rgb(83, 172, 239, 10%) #53acef1a  
rgb(83, 172, 239, 20%) #53acef33  
rgb(83, 172, 239, 40%) #53acef4C  
rgb(83, 172, 239, 60%) #53acef99  
rgb(83, 172, 239, 80%) #53acefCC  
rgb(83, 172, 239, 100%) #53acefFF  

Saturated and desaturated colors of #53acef

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

#53acef Color Usage In CSS

 body {
    color: #53acef;
    }
 p {
    color: rgb(83, 172, 239);
    }
 header {
    border-bottom:1px solid #53acef;
    }
Recent Random Colors