Random Color Generator

#27475b Color

Color Codes
Hex Code #27475b
RGB Code rgb(39, 71, 91)
HSL Code hsl(203, 40%, 25%)

#27475b Color Syntax

rgb()

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

 main {
    background-color: rgb(39, 71, 91);
   }

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, 40%, 25%);
  }

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 #27475b

RGB Code Hex Code Preview
rgb(39, 71, 91, 10%) #27475b1a  
rgb(39, 71, 91, 20%) #27475b33  
rgb(39, 71, 91, 40%) #27475b4C  
rgb(39, 71, 91, 60%) #27475b99  
rgb(39, 71, 91, 80%) #27475bCC  
rgb(39, 71, 91, 100%) #27475bFF  

Saturated and desaturated colors of #27475b

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

#27475b Color Usage In CSS

 body {
    color: #27475b;
    }
 p {
    color: rgb(39, 71, 91);
    }
 header {
    border-bottom:1px solid #27475b;
    }
Recent Random Colors