Random Color Generator

#53b5d4 Color

Color Codes
Hex Code #53b5d4
RGB Code rgb(83, 181, 212)
HSL Code hsl(194, 60%, 58%)

#53b5d4 Color Syntax

rgb()

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

 main {
    background-color: rgb(83, 181, 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(194, 60%, 58%);
  }

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

RGB Code Hex Code Preview
rgb(83, 181, 212, 10%) #53b5d41a  
rgb(83, 181, 212, 20%) #53b5d433  
rgb(83, 181, 212, 40%) #53b5d44C  
rgb(83, 181, 212, 60%) #53b5d499  
rgb(83, 181, 212, 80%) #53b5d4CC  
rgb(83, 181, 212, 100%) #53b5d4FF  

Saturated and desaturated colors of #53b5d4

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

#53b5d4 Color Usage In CSS

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