Random Color Generator

#1583ac Color

Color Codes
Hex Code #1583ac
RGB Code rgb(21, 131, 172)
HSL Code hsl(196, 78%, 38%)

#1583ac Color Syntax

rgb()

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

 main {
    background-color: rgb(21, 131, 172);
   }

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(196, 78%, 38%);
  }

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 #1583ac

RGB Code Hex Code Preview
rgb(21, 131, 172, 10%) #1583ac1a  
rgb(21, 131, 172, 20%) #1583ac33  
rgb(21, 131, 172, 40%) #1583ac4C  
rgb(21, 131, 172, 60%) #1583ac99  
rgb(21, 131, 172, 80%) #1583acCC  
rgb(21, 131, 172, 100%) #1583acFF  

Saturated and desaturated colors of #1583ac

HSL Code Preview
hsl(196, 10%, 38%)  
hsl(196, 20%, 38%)  
hsl(196, 40%, 38%)  
hsl(196, 60%, 38%)  
hsl(196, 80%, 38%)  
hsl(196, 100%, 38%)  

#1583ac Color Usage In CSS

 body {
    color: #1583ac;
    }
 p {
    color: rgb(21, 131, 172);
    }
 header {
    border-bottom:1px solid #1583ac;
    }
Recent Random Colors