Random Color Generator

#c03a43 Color

Color Codes
Hex Code #c03a43
RGB Code rgb(192, 58, 67)
HSL Code hsl(356, 54%, 49%)

#c03a43 Color Syntax

rgb()

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

 main {
    background-color: rgb(192, 58, 67);
   }

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(356, 54%, 49%);
  }

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

RGB Code Hex Code Preview
rgb(192, 58, 67, 10%) #c03a431a  
rgb(192, 58, 67, 20%) #c03a4333  
rgb(192, 58, 67, 40%) #c03a434C  
rgb(192, 58, 67, 60%) #c03a4399  
rgb(192, 58, 67, 80%) #c03a43CC  
rgb(192, 58, 67, 100%) #c03a43FF  

Saturated and desaturated colors of #c03a43

HSL Code Preview
hsl(356, 10%, 49%)  
hsl(356, 20%, 49%)  
hsl(356, 40%, 49%)  
hsl(356, 60%, 49%)  
hsl(356, 80%, 49%)  
hsl(356, 100%, 49%)  

#c03a43 Color Usage In CSS

 body {
    color: #c03a43;
    }
 p {
    color: rgb(192, 58, 67);
    }
 header {
    border-bottom:1px solid #c03a43;
    }
Recent Random Colors