Random Color Generator

#2f7ffa Color

Color Codes
Hex Code #2f7ffa
RGB Code rgb(47, 127, 250)
HSL Code hsl(216, 95%, 58%)

#2f7ffa Color Syntax

rgb()

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

 main {
    background-color: rgb(47, 127, 250);
   }

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(216, 95%, 58%);
  }

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

RGB Code Hex Code Preview
rgb(47, 127, 250, 10%) #2f7ffa1a  
rgb(47, 127, 250, 20%) #2f7ffa33  
rgb(47, 127, 250, 40%) #2f7ffa4C  
rgb(47, 127, 250, 60%) #2f7ffa99  
rgb(47, 127, 250, 80%) #2f7ffaCC  
rgb(47, 127, 250, 100%) #2f7ffaFF  

Saturated and desaturated colors of #2f7ffa

HSL Code Preview
hsl(216, 10%, 58%)  
hsl(216, 20%, 58%)  
hsl(216, 40%, 58%)  
hsl(216, 60%, 58%)  
hsl(216, 80%, 58%)  
hsl(216, 100%, 58%)  

#2f7ffa Color Usage In CSS

 body {
    color: #2f7ffa;
    }
 p {
    color: rgb(47, 127, 250);
    }
 header {
    border-bottom:1px solid #2f7ffa;
    }
Recent Random Colors