#017e35 Color
Color Codes | |
---|---|
Hex Code | #017e35 |
RGB Code | rgb(01, 126, 53) |
HSL Code | hsl(145, 98%, 25%) |
#017e35 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(01, 126, 53); }
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, 98%, 25%); }
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 #017e35
RGB Code | Hex Code | Preview |
---|---|---|
rgb(01, 126, 53, 10%) | #017e351a | |
rgb(01, 126, 53, 20%) | #017e3533 | |
rgb(01, 126, 53, 40%) | #017e354C | |
rgb(01, 126, 53, 60%) | #017e3599 | |
rgb(01, 126, 53, 80%) | #017e35CC | |
rgb(01, 126, 53, 100%) | #017e35FF |
Saturated and desaturated colors of #017e35
HSL Code | Preview |
---|---|
hsl(145, 10%, 25%) | |
hsl(145, 20%, 25%) | |
hsl(145, 40%, 25%) | |
hsl(145, 60%, 25%) | |
hsl(145, 80%, 25%) | |
hsl(145, 100%, 25%) |
#017e35 Color Usage In CSS
body { color: #017e35; } p { color: rgb(01, 126, 53); } header { border-bottom:1px solid #017e35; }