Random Color Generator

#213b00 Color

Color Codes
Hex Code #213b00
RGB Code rgb(33, 59, 00)
HSL Code hsl(86, 100%, 12%)

#213b00 Color Syntax

rgb()

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

 main {
    background-color: rgb(33, 59, 00);
   }

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(86, 100%, 12%);
  }

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 #213b00

RGB Code Hex Code Preview
rgb(33, 59, 00, 10%) #213b001a  
rgb(33, 59, 00, 20%) #213b0033  
rgb(33, 59, 00, 40%) #213b004C  
rgb(33, 59, 00, 60%) #213b0099  
rgb(33, 59, 00, 80%) #213b00CC  
rgb(33, 59, 00, 100%) #213b00FF  

Saturated and desaturated colors of #213b00

HSL Code Preview
hsl(86, 10%, 12%)  
hsl(86, 20%, 12%)  
hsl(86, 40%, 12%)  
hsl(86, 60%, 12%)  
hsl(86, 80%, 12%)  
hsl(86, 100%, 12%)  

#213b00 Color Usage In CSS

 body {
    color: #213b00;
    }
 p {
    color: rgb(33, 59, 00);
    }
 header {
    border-bottom:1px solid #213b00;
    }
Recent Random Colors