#09e355 Color
Color Codes | |
---|---|
Hex Code | #09e355 |
RGB Code | rgb(09, 227, 85) |
HSL Code | hsl(141, 92%, 46%) |
#09e355 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(09, 227, 85); }
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(141, 92%, 46%); }
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 #09e355
RGB Code | Hex Code | Preview |
---|---|---|
rgb(09, 227, 85, 10%) | #09e3551a | |
rgb(09, 227, 85, 20%) | #09e35533 | |
rgb(09, 227, 85, 40%) | #09e3554C | |
rgb(09, 227, 85, 60%) | #09e35599 | |
rgb(09, 227, 85, 80%) | #09e355CC | |
rgb(09, 227, 85, 100%) | #09e355FF |
Saturated and desaturated colors of #09e355
HSL Code | Preview |
---|---|
hsl(141, 10%, 46%) | |
hsl(141, 20%, 46%) | |
hsl(141, 40%, 46%) | |
hsl(141, 60%, 46%) | |
hsl(141, 80%, 46%) | |
hsl(141, 100%, 46%) |
#09e355 Color Usage In CSS
body { color: #09e355; } p { color: rgb(09, 227, 85); } header { border-bottom:1px solid #09e355; }