#285e33 Color
Color Codes | |
---|---|
Hex Code | #285e33 |
RGB Code | rgb(40, 94, 51) |
HSL Code | hsl(132, 40%, 26%) |
#285e33 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(40, 94, 51); }
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(132, 40%, 26%); }
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 #285e33
RGB Code | Hex Code | Preview |
---|---|---|
rgb(40, 94, 51, 10%) | #285e331a | |
rgb(40, 94, 51, 20%) | #285e3333 | |
rgb(40, 94, 51, 40%) | #285e334C | |
rgb(40, 94, 51, 60%) | #285e3399 | |
rgb(40, 94, 51, 80%) | #285e33CC | |
rgb(40, 94, 51, 100%) | #285e33FF |
Saturated and desaturated colors of #285e33
HSL Code | Preview |
---|---|
hsl(132, 10%, 26%) | |
hsl(132, 20%, 26%) | |
hsl(132, 40%, 26%) | |
hsl(132, 60%, 26%) | |
hsl(132, 80%, 26%) | |
hsl(132, 100%, 26%) |
#285e33 Color Usage In CSS
body { color: #285e33; } p { color: rgb(40, 94, 51); } header { border-bottom:1px solid #285e33; }