#236e29 Color
Color Codes | |
---|---|
Hex Code | #236e29 |
RGB Code | rgb(35, 110, 41) |
HSL Code | hsl(125, 52%, 28%) |
#236e29 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(35, 110, 41); }
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(125, 52%, 28%); }
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 #236e29
RGB Code | Hex Code | Preview |
---|---|---|
rgb(35, 110, 41, 10%) | #236e291a | |
rgb(35, 110, 41, 20%) | #236e2933 | |
rgb(35, 110, 41, 40%) | #236e294C | |
rgb(35, 110, 41, 60%) | #236e2999 | |
rgb(35, 110, 41, 80%) | #236e29CC | |
rgb(35, 110, 41, 100%) | #236e29FF |
Saturated and desaturated colors of #236e29
HSL Code | Preview |
---|---|
hsl(125, 10%, 28%) | |
hsl(125, 20%, 28%) | |
hsl(125, 40%, 28%) | |
hsl(125, 60%, 28%) | |
hsl(125, 80%, 28%) | |
hsl(125, 100%, 28%) |
#236e29 Color Usage In CSS
body { color: #236e29; } p { color: rgb(35, 110, 41); } header { border-bottom:1px solid #236e29; }