Random Color Generator

#023580 Color

Color Codes
Hex Code #023580
RGB Code rgb(02, 53, 128)
HSL Code hsl(216, 97%, 25%)

#023580 Color Syntax

rgb()

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

 main {
    background-color: rgb(02, 53, 128);
   }

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(216, 97%, 25%);
  }

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

RGB Code Hex Code Preview
rgb(02, 53, 128, 10%) #0235801a  
rgb(02, 53, 128, 20%) #02358033  
rgb(02, 53, 128, 40%) #0235804C  
rgb(02, 53, 128, 60%) #02358099  
rgb(02, 53, 128, 80%) #023580CC  
rgb(02, 53, 128, 100%) #023580FF  

Saturated and desaturated colors of #023580

HSL Code Preview
hsl(216, 10%, 25%)  
hsl(216, 20%, 25%)  
hsl(216, 40%, 25%)  
hsl(216, 60%, 25%)  
hsl(216, 80%, 25%)  
hsl(216, 100%, 25%)  

#023580 Color Usage In CSS

 body {
    color: #023580;
    }
 p {
    color: rgb(02, 53, 128);
    }
 header {
    border-bottom:1px solid #023580;
    }
Recent Random Colors