Random Color Generator

#272575 Color

Color Codes
Hex Code #272575
RGB Code rgb(39, 37, 117)
HSL Code hsl(242, 52%, 30%)

#272575 Color Syntax

rgb()

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

 main {
    background-color: rgb(39, 37, 117);
   }

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(242, 52%, 30%);
  }

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 #272575

RGB Code Hex Code Preview
rgb(39, 37, 117, 10%) #2725751a  
rgb(39, 37, 117, 20%) #27257533  
rgb(39, 37, 117, 40%) #2725754C  
rgb(39, 37, 117, 60%) #27257599  
rgb(39, 37, 117, 80%) #272575CC  
rgb(39, 37, 117, 100%) #272575FF  

Saturated and desaturated colors of #272575

HSL Code Preview
hsl(242, 10%, 30%)  
hsl(242, 20%, 30%)  
hsl(242, 40%, 30%)  
hsl(242, 60%, 30%)  
hsl(242, 80%, 30%)  
hsl(242, 100%, 30%)  

#272575 Color Usage In CSS

 body {
    color: #272575;
    }
 p {
    color: rgb(39, 37, 117);
    }
 header {
    border-bottom:1px solid #272575;
    }
Recent Random Colors