Random Color Generator

#023ae6 Color

Color Codes
Hex Code #023ae6
RGB Code rgb(02, 58, 230)
HSL Code hsl(225, 98%, 45%)

#023ae6 Color Syntax

rgb()

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

 main {
    background-color: rgb(02, 58, 230);
   }

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(225, 98%, 45%);
  }

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 #023ae6

RGB Code Hex Code Preview
rgb(02, 58, 230, 10%) #023ae61a  
rgb(02, 58, 230, 20%) #023ae633  
rgb(02, 58, 230, 40%) #023ae64C  
rgb(02, 58, 230, 60%) #023ae699  
rgb(02, 58, 230, 80%) #023ae6CC  
rgb(02, 58, 230, 100%) #023ae6FF  

Saturated and desaturated colors of #023ae6

HSL Code Preview
hsl(225, 10%, 45%)  
hsl(225, 20%, 45%)  
hsl(225, 40%, 45%)  
hsl(225, 60%, 45%)  
hsl(225, 80%, 45%)  
hsl(225, 100%, 45%)  

#023ae6 Color Usage In CSS

 body {
    color: #023ae6;
    }
 p {
    color: rgb(02, 58, 230);
    }
 header {
    border-bottom:1px solid #023ae6;
    }
Recent Random Colors