Random Color Generator

#5be2f0 Color

Color Codes
Hex Code #5be2f0
RGB Code rgb(91, 226, 240)
HSL Code hsl(186, 83%, 65%)

#5be2f0 Color Syntax

rgb()

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

 main {
    background-color: rgb(91, 226, 240);
   }

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(186, 83%, 65%);
  }

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 #5be2f0

RGB Code Hex Code Preview
rgb(91, 226, 240, 10%) #5be2f01a  
rgb(91, 226, 240, 20%) #5be2f033  
rgb(91, 226, 240, 40%) #5be2f04C  
rgb(91, 226, 240, 60%) #5be2f099  
rgb(91, 226, 240, 80%) #5be2f0CC  
rgb(91, 226, 240, 100%) #5be2f0FF  

Saturated and desaturated colors of #5be2f0

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

#5be2f0 Color Usage In CSS

 body {
    color: #5be2f0;
    }
 p {
    color: rgb(91, 226, 240);
    }
 header {
    border-bottom:1px solid #5be2f0;
    }
Recent Random Colors