#0e4224 Color
Color Codes | |
---|---|
Hex Code | #0e4224 |
RGB Code | rgb(14, 66, 36) |
HSL Code | hsl(145, 65%, 16%) |
#0e4224 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(14, 66, 36); }
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(145, 65%, 16%); }
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 #0e4224
RGB Code | Hex Code | Preview |
---|---|---|
rgb(14, 66, 36, 10%) | #0e42241a | |
rgb(14, 66, 36, 20%) | #0e422433 | |
rgb(14, 66, 36, 40%) | #0e42244C | |
rgb(14, 66, 36, 60%) | #0e422499 | |
rgb(14, 66, 36, 80%) | #0e4224CC | |
rgb(14, 66, 36, 100%) | #0e4224FF |
Saturated and desaturated colors of #0e4224
HSL Code | Preview |
---|---|
hsl(145, 10%, 16%) | |
hsl(145, 20%, 16%) | |
hsl(145, 40%, 16%) | |
hsl(145, 60%, 16%) | |
hsl(145, 80%, 16%) | |
hsl(145, 100%, 16%) |
#0e4224 Color Usage In CSS
body { color: #0e4224; } p { color: rgb(14, 66, 36); } header { border-bottom:1px solid #0e4224; }