Random Color Generator

#125c61 Color

Color Codes
Hex Code #125c61
RGB Code rgb(18, 92, 97)
HSL Code hsl(184, 69%, 23%)

#125c61 Color Syntax

rgb()

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

 main {
    background-color: rgb(18, 92, 97);
   }

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(184, 69%, 23%);
  }

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 #125c61

RGB Code Hex Code Preview
rgb(18, 92, 97, 10%) #125c611a  
rgb(18, 92, 97, 20%) #125c6133  
rgb(18, 92, 97, 40%) #125c614C  
rgb(18, 92, 97, 60%) #125c6199  
rgb(18, 92, 97, 80%) #125c61CC  
rgb(18, 92, 97, 100%) #125c61FF  

Saturated and desaturated colors of #125c61

HSL Code Preview
hsl(184, 10%, 23%)  
hsl(184, 20%, 23%)  
hsl(184, 40%, 23%)  
hsl(184, 60%, 23%)  
hsl(184, 80%, 23%)  
hsl(184, 100%, 23%)  

#125c61 Color Usage In CSS

 body {
    color: #125c61;
    }
 p {
    color: rgb(18, 92, 97);
    }
 header {
    border-bottom:1px solid #125c61;
    }
Recent Random Colors