Random Color Generator

#281b66 Color

Color Codes
Hex Code #281b66
RGB Code rgb(40, 27, 102)
HSL Code hsl(250, 58%, 25%)

#281b66 Color Syntax

rgb()

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

 main {
    background-color: rgb(40, 27, 102);
   }

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(250, 58%, 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 #281b66

RGB Code Hex Code Preview
rgb(40, 27, 102, 10%) #281b661a  
rgb(40, 27, 102, 20%) #281b6633  
rgb(40, 27, 102, 40%) #281b664C  
rgb(40, 27, 102, 60%) #281b6699  
rgb(40, 27, 102, 80%) #281b66CC  
rgb(40, 27, 102, 100%) #281b66FF  

Saturated and desaturated colors of #281b66

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

#281b66 Color Usage In CSS

 body {
    color: #281b66;
    }
 p {
    color: rgb(40, 27, 102);
    }
 header {
    border-bottom:1px solid #281b66;
    }
Recent Random Colors