Random Color Generator

#45b2e6 Color

Color Codes
Hex Code #45b2e6
RGB Code rgb(69, 178, 230)
HSL Code hsl(199, 76%, 59%)

#45b2e6 Color Syntax

rgb()

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

 main {
    background-color: rgb(69, 178, 230);
   }

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(199, 76%, 59%);
  }

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 #45b2e6

RGB Code Hex Code Preview
rgb(69, 178, 230, 10%) #45b2e61a  
rgb(69, 178, 230, 20%) #45b2e633  
rgb(69, 178, 230, 40%) #45b2e64C  
rgb(69, 178, 230, 60%) #45b2e699  
rgb(69, 178, 230, 80%) #45b2e6CC  
rgb(69, 178, 230, 100%) #45b2e6FF  

Saturated and desaturated colors of #45b2e6

HSL Code Preview
hsl(199, 10%, 59%)  
hsl(199, 20%, 59%)  
hsl(199, 40%, 59%)  
hsl(199, 60%, 59%)  
hsl(199, 80%, 59%)  
hsl(199, 100%, 59%)  

#45b2e6 Color Usage In CSS

 body {
    color: #45b2e6;
    }
 p {
    color: rgb(69, 178, 230);
    }
 header {
    border-bottom:1px solid #45b2e6;
    }
Recent Random Colors