Random Color Generator

#2bb1f1 Color

Color Codes
Hex Code #2bb1f1
RGB Code rgb(43, 177, 241)
HSL Code hsl(199, 88%, 56%)

#2bb1f1 Color Syntax

rgb()

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

 main {
    background-color: rgb(43, 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(199, 88%, 56%);
  }

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 #2bb1f1

RGB Code Hex Code Preview
rgb(43, 177, 241, 10%) #2bb1f11a  
rgb(43, 177, 241, 20%) #2bb1f133  
rgb(43, 177, 241, 40%) #2bb1f14C  
rgb(43, 177, 241, 60%) #2bb1f199  
rgb(43, 177, 241, 80%) #2bb1f1CC  
rgb(43, 177, 241, 100%) #2bb1f1FF  

Saturated and desaturated colors of #2bb1f1

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

#2bb1f1 Color Usage In CSS

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