Random Color Generator

#f35128 Color

Color Codes
Hex Code #f35128
RGB Code rgb(243, 81, 40)
HSL Code hsl(12, 89%, 55%)

#f35128 Color Syntax

rgb()

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

 main {
    background-color: rgb(243, 81, 40);
   }

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(12, 89%, 55%);
  }

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

RGB Code Hex Code Preview
rgb(243, 81, 40, 10%) #f351281a  
rgb(243, 81, 40, 20%) #f3512833  
rgb(243, 81, 40, 40%) #f351284C  
rgb(243, 81, 40, 60%) #f3512899  
rgb(243, 81, 40, 80%) #f35128CC  
rgb(243, 81, 40, 100%) #f35128FF  

Saturated and desaturated colors of #f35128

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

#f35128 Color Usage In CSS

 body {
    color: #f35128;
    }
 p {
    color: rgb(243, 81, 40);
    }
 header {
    border-bottom:1px solid #f35128;
    }
Recent Random Colors