Random Color Generator

#23465d Color

Color Codes
Hex Code #23465d
RGB Code rgb(35, 70, 93)
HSL Code hsl(204, 45%, 25%)

#23465d Color Syntax

rgb()

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

 main {
    background-color: rgb(35, 70, 93);
   }

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(204, 45%, 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 #23465d

RGB Code Hex Code Preview
rgb(35, 70, 93, 10%) #23465d1a  
rgb(35, 70, 93, 20%) #23465d33  
rgb(35, 70, 93, 40%) #23465d4C  
rgb(35, 70, 93, 60%) #23465d99  
rgb(35, 70, 93, 80%) #23465dCC  
rgb(35, 70, 93, 100%) #23465dFF  

Saturated and desaturated colors of #23465d

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

#23465d Color Usage In CSS

 body {
    color: #23465d;
    }
 p {
    color: rgb(35, 70, 93);
    }
 header {
    border-bottom:1px solid #23465d;
    }
Recent Random Colors