Random Color Generator

#217bc7 Color

Color Codes
Hex Code #217bc7
RGB Code rgb(33, 123, 199)
HSL Code hsl(207, 72%, 45%)

#217bc7 Color Syntax

rgb()

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

 main {
    background-color: rgb(33, 123, 199);
   }

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(207, 72%, 45%);
  }

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 #217bc7

RGB Code Hex Code Preview
rgb(33, 123, 199, 10%) #217bc71a  
rgb(33, 123, 199, 20%) #217bc733  
rgb(33, 123, 199, 40%) #217bc74C  
rgb(33, 123, 199, 60%) #217bc799  
rgb(33, 123, 199, 80%) #217bc7CC  
rgb(33, 123, 199, 100%) #217bc7FF  

Saturated and desaturated colors of #217bc7

HSL Code Preview
hsl(207, 10%, 45%)  
hsl(207, 20%, 45%)  
hsl(207, 40%, 45%)  
hsl(207, 60%, 45%)  
hsl(207, 80%, 45%)  
hsl(207, 100%, 45%)  

#217bc7 Color Usage In CSS

 body {
    color: #217bc7;
    }
 p {
    color: rgb(33, 123, 199);
    }
 header {
    border-bottom:1px solid #217bc7;
    }
Recent Random Colors