Random Color Generator

#0a6265 Color

Color Codes
Hex Code #0a6265
RGB Code rgb(10, 98, 101)
HSL Code hsl(182, 82%, 22%)

#0a6265 Color Syntax

rgb()

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

 main {
    background-color: rgb(10, 98, 101);
   }

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(182, 82%, 22%);
  }

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 #0a6265

RGB Code Hex Code Preview
rgb(10, 98, 101, 10%) #0a62651a  
rgb(10, 98, 101, 20%) #0a626533  
rgb(10, 98, 101, 40%) #0a62654C  
rgb(10, 98, 101, 60%) #0a626599  
rgb(10, 98, 101, 80%) #0a6265CC  
rgb(10, 98, 101, 100%) #0a6265FF  

Saturated and desaturated colors of #0a6265

HSL Code Preview
hsl(182, 10%, 22%)  
hsl(182, 20%, 22%)  
hsl(182, 40%, 22%)  
hsl(182, 60%, 22%)  
hsl(182, 80%, 22%)  
hsl(182, 100%, 22%)  

#0a6265 Color Usage In CSS

 body {
    color: #0a6265;
    }
 p {
    color: rgb(10, 98, 101);
    }
 header {
    border-bottom:1px solid #0a6265;
    }
Recent Random Colors