#125609 Color
Color Codes | |
---|---|
Hex Code | #125609 |
RGB Code | rgb(18, 86, 09) |
HSL Code | hsl(113, 81%, 19%) |
#125609 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(18, 86, 09); }
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(113, 81%, 19%); }
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 #125609
RGB Code | Hex Code | Preview |
---|---|---|
rgb(18, 86, 09, 10%) | #1256091a | |
rgb(18, 86, 09, 20%) | #12560933 | |
rgb(18, 86, 09, 40%) | #1256094C | |
rgb(18, 86, 09, 60%) | #12560999 | |
rgb(18, 86, 09, 80%) | #125609CC | |
rgb(18, 86, 09, 100%) | #125609FF |
Saturated and desaturated colors of #125609
HSL Code | Preview |
---|---|
hsl(113, 10%, 19%) | |
hsl(113, 20%, 19%) | |
hsl(113, 40%, 19%) | |
hsl(113, 60%, 19%) | |
hsl(113, 80%, 19%) | |
hsl(113, 100%, 19%) |
#125609 Color Usage In CSS
body { color: #125609; } p { color: rgb(18, 86, 09); } header { border-bottom:1px solid #125609; }