Random Color Generator

#254f97 Color

Color Codes
Hex Code #254f97
RGB Code rgb(37, 79, 151)
HSL Code hsl(218, 61%, 37%)

#254f97 Color Syntax

rgb()

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

 main {
    background-color: rgb(37, 79, 151);
   }

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(218, 61%, 37%);
  }

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 #254f97

RGB Code Hex Code Preview
rgb(37, 79, 151, 10%) #254f971a  
rgb(37, 79, 151, 20%) #254f9733  
rgb(37, 79, 151, 40%) #254f974C  
rgb(37, 79, 151, 60%) #254f9799  
rgb(37, 79, 151, 80%) #254f97CC  
rgb(37, 79, 151, 100%) #254f97FF  

Saturated and desaturated colors of #254f97

HSL Code Preview
hsl(218, 10%, 37%)  
hsl(218, 20%, 37%)  
hsl(218, 40%, 37%)  
hsl(218, 60%, 37%)  
hsl(218, 80%, 37%)  
hsl(218, 100%, 37%)  

#254f97 Color Usage In CSS

 body {
    color: #254f97;
    }
 p {
    color: rgb(37, 79, 151);
    }
 header {
    border-bottom:1px solid #254f97;
    }
Recent Random Colors