Random Color Generator

#91bed6 Color

Color Codes
Hex Code #91bed6
RGB Code rgb(145, 190, 214)
HSL Code hsl(201, 46%, 70%)

#91bed6 Color Syntax

rgb()

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

 main {
    background-color: rgb(145, 190, 214);
   }

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, 46%, 70%);
  }

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 #91bed6

RGB Code Hex Code Preview
rgb(145, 190, 214, 10%) #91bed61a  
rgb(145, 190, 214, 20%) #91bed633  
rgb(145, 190, 214, 40%) #91bed64C  
rgb(145, 190, 214, 60%) #91bed699  
rgb(145, 190, 214, 80%) #91bed6CC  
rgb(145, 190, 214, 100%) #91bed6FF  

Saturated and desaturated colors of #91bed6

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

#91bed6 Color Usage In CSS

 body {
    color: #91bed6;
    }
 p {
    color: rgb(145, 190, 214);
    }
 header {
    border-bottom:1px solid #91bed6;
    }
Recent Random Colors