#041911 Color
Color Codes | |
---|---|
Hex Code | #041911 |
RGB Code | rgb(04, 25, 17) |
HSL Code | hsl(157, 72%, 6%) |
#041911 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(04, 25, 17); }
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(157, 72%, 6%); }
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 #041911
RGB Code | Hex Code | Preview |
---|---|---|
rgb(04, 25, 17, 10%) | #0419111a | |
rgb(04, 25, 17, 20%) | #04191133 | |
rgb(04, 25, 17, 40%) | #0419114C | |
rgb(04, 25, 17, 60%) | #04191199 | |
rgb(04, 25, 17, 80%) | #041911CC | |
rgb(04, 25, 17, 100%) | #041911FF |
Saturated and desaturated colors of #041911
HSL Code | Preview |
---|---|
hsl(157, 10%, 6%) | |
hsl(157, 20%, 6%) | |
hsl(157, 40%, 6%) | |
hsl(157, 60%, 6%) | |
hsl(157, 80%, 6%) | |
hsl(157, 100%, 6%) |
#041911 Color Usage In CSS
body { color: #041911; } p { color: rgb(04, 25, 17); } header { border-bottom:1px solid #041911; }