Random Color Generator

#e54b01 Color

Color Codes
Hex Code #e54b01
RGB Code rgb(229, 75, 01)
HSL Code hsl(19, 99%, 45%)

#e54b01 Color Syntax

rgb()

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

 main {
    background-color: rgb(229, 75, 01);
   }

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(19, 99%, 45%);
  }

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

RGB Code Hex Code Preview
rgb(229, 75, 01, 10%) #e54b011a  
rgb(229, 75, 01, 20%) #e54b0133  
rgb(229, 75, 01, 40%) #e54b014C  
rgb(229, 75, 01, 60%) #e54b0199  
rgb(229, 75, 01, 80%) #e54b01CC  
rgb(229, 75, 01, 100%) #e54b01FF  

Saturated and desaturated colors of #e54b01

HSL Code Preview
hsl(19, 10%, 45%)  
hsl(19, 20%, 45%)  
hsl(19, 40%, 45%)  
hsl(19, 60%, 45%)  
hsl(19, 80%, 45%)  
hsl(19, 100%, 45%)  

#e54b01 Color Usage In CSS

 body {
    color: #e54b01;
    }
 p {
    color: rgb(229, 75, 01);
    }
 header {
    border-bottom:1px solid #e54b01;
    }
Recent Random Colors