Random Color Generator

#ffc427 Color

Color Codes
Hex Code #ffc427
RGB Code rgb(255, 196, 39)
HSL Code hsl(44, 100%, 58%)

#ffc427 Color Syntax

rgb()

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

 main {
    background-color: rgb(255, 196, 39);
   }

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(44, 100%, 58%);
  }

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

RGB Code Hex Code Preview
rgb(255, 196, 39, 10%) #ffc4271a  
rgb(255, 196, 39, 20%) #ffc42733  
rgb(255, 196, 39, 40%) #ffc4274C  
rgb(255, 196, 39, 60%) #ffc42799  
rgb(255, 196, 39, 80%) #ffc427CC  
rgb(255, 196, 39, 100%) #ffc427FF  

Saturated and desaturated colors of #ffc427

HSL Code Preview
hsl(44, 10%, 58%)  
hsl(44, 20%, 58%)  
hsl(44, 40%, 58%)  
hsl(44, 60%, 58%)  
hsl(44, 80%, 58%)  
hsl(44, 100%, 58%)  

#ffc427 Color Usage In CSS

 body {
    color: #ffc427;
    }
 p {
    color: rgb(255, 196, 39);
    }
 header {
    border-bottom:1px solid #ffc427;
    }
Recent Random Colors