Random Color Generator

#46bbf5 Color

Color Codes
Hex Code #46bbf5
RGB Code rgb(70, 187, 245)
HSL Code hsl(200, 90%, 62%)

#46bbf5 Color Syntax

rgb()

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

 main {
    background-color: rgb(70, 187, 245);
   }

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(200, 90%, 62%);
  }

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 #46bbf5

RGB Code Hex Code Preview
rgb(70, 187, 245, 10%) #46bbf51a  
rgb(70, 187, 245, 20%) #46bbf533  
rgb(70, 187, 245, 40%) #46bbf54C  
rgb(70, 187, 245, 60%) #46bbf599  
rgb(70, 187, 245, 80%) #46bbf5CC  
rgb(70, 187, 245, 100%) #46bbf5FF  

Saturated and desaturated colors of #46bbf5

HSL Code Preview
hsl(200, 10%, 62%)  
hsl(200, 20%, 62%)  
hsl(200, 40%, 62%)  
hsl(200, 60%, 62%)  
hsl(200, 80%, 62%)  
hsl(200, 100%, 62%)  

#46bbf5 Color Usage In CSS

 body {
    color: #46bbf5;
    }
 p {
    color: rgb(70, 187, 245);
    }
 header {
    border-bottom:1px solid #46bbf5;
    }
Recent Random Colors