#35f225 Color
Color Codes | |
---|---|
Hex Code | #35f225 |
RGB Code | rgb(53, 242, 37) |
HSL Code | hsl(115, 89%, 55%) |
#35f225 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(53, 242, 37); }
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(115, 89%, 55%); }
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 #35f225
RGB Code | Hex Code | Preview |
---|---|---|
rgb(53, 242, 37, 10%) | #35f2251a | |
rgb(53, 242, 37, 20%) | #35f22533 | |
rgb(53, 242, 37, 40%) | #35f2254C | |
rgb(53, 242, 37, 60%) | #35f22599 | |
rgb(53, 242, 37, 80%) | #35f225CC | |
rgb(53, 242, 37, 100%) | #35f225FF |
Saturated and desaturated colors of #35f225
HSL Code | Preview |
---|---|
hsl(115, 10%, 55%) | |
hsl(115, 20%, 55%) | |
hsl(115, 40%, 55%) | |
hsl(115, 60%, 55%) | |
hsl(115, 80%, 55%) | |
hsl(115, 100%, 55%) |
#35f225 Color Usage In CSS
body { color: #35f225; } p { color: rgb(53, 242, 37); } header { border-bottom:1px solid #35f225; }