Random Color Generator

#4cb1f1 Color

Color Codes
Hex Code #4cb1f1
RGB Code rgb(76, 177, 241)
HSL Code hsl(203, 85%, 62%)

#4cb1f1 Color Syntax

rgb()

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

 main {
    background-color: rgb(76, 177, 241);
   }

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(203, 85%, 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 #4cb1f1

RGB Code Hex Code Preview
rgb(76, 177, 241, 10%) #4cb1f11a  
rgb(76, 177, 241, 20%) #4cb1f133  
rgb(76, 177, 241, 40%) #4cb1f14C  
rgb(76, 177, 241, 60%) #4cb1f199  
rgb(76, 177, 241, 80%) #4cb1f1CC  
rgb(76, 177, 241, 100%) #4cb1f1FF  

Saturated and desaturated colors of #4cb1f1

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

#4cb1f1 Color Usage In CSS

 body {
    color: #4cb1f1;
    }
 p {
    color: rgb(76, 177, 241);
    }
 header {
    border-bottom:1px solid #4cb1f1;
    }
Recent Random Colors