Random Color Generator

#255bd6 Color

Color Codes
Hex Code #255bd6
RGB Code rgb(37, 91, 214)
HSL Code hsl(222, 71%, 49%)

#255bd6 Color Syntax

rgb()

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

 main {
    background-color: rgb(37, 91, 214);
   }

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(222, 71%, 49%);
  }

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 #255bd6

RGB Code Hex Code Preview
rgb(37, 91, 214, 10%) #255bd61a  
rgb(37, 91, 214, 20%) #255bd633  
rgb(37, 91, 214, 40%) #255bd64C  
rgb(37, 91, 214, 60%) #255bd699  
rgb(37, 91, 214, 80%) #255bd6CC  
rgb(37, 91, 214, 100%) #255bd6FF  

Saturated and desaturated colors of #255bd6

HSL Code Preview
hsl(222, 10%, 49%)  
hsl(222, 20%, 49%)  
hsl(222, 40%, 49%)  
hsl(222, 60%, 49%)  
hsl(222, 80%, 49%)  
hsl(222, 100%, 49%)  

#255bd6 Color Usage In CSS

 body {
    color: #255bd6;
    }
 p {
    color: rgb(37, 91, 214);
    }
 header {
    border-bottom:1px solid #255bd6;
    }
Recent Random Colors