Random Color Generator

#45acdf Color

Color Codes
Hex Code #45acdf
RGB Code rgb(69, 172, 223)
HSL Code hsl(200, 71%, 57%)

#45acdf Color Syntax

rgb()

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

 main {
    background-color: rgb(69, 172, 223);
   }

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, 71%, 57%);
  }

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

RGB Code Hex Code Preview
rgb(69, 172, 223, 10%) #45acdf1a  
rgb(69, 172, 223, 20%) #45acdf33  
rgb(69, 172, 223, 40%) #45acdf4C  
rgb(69, 172, 223, 60%) #45acdf99  
rgb(69, 172, 223, 80%) #45acdfCC  
rgb(69, 172, 223, 100%) #45acdfFF  

Saturated and desaturated colors of #45acdf

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

#45acdf Color Usage In CSS

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