#23f535 Color
Color Codes | |
---|---|
Hex Code | #23f535 |
RGB Code | rgb(35, 245, 53) |
HSL Code | hsl(125, 91%, 55%) |
#23f535 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(35, 245, 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(125, 91%, 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 #23f535
RGB Code | Hex Code | Preview |
---|---|---|
rgb(35, 245, 53, 10%) | #23f5351a | |
rgb(35, 245, 53, 20%) | #23f53533 | |
rgb(35, 245, 53, 40%) | #23f5354C | |
rgb(35, 245, 53, 60%) | #23f53599 | |
rgb(35, 245, 53, 80%) | #23f535CC | |
rgb(35, 245, 53, 100%) | #23f535FF |
Saturated and desaturated colors of #23f535
HSL Code | Preview |
---|---|
hsl(125, 10%, 55%) | |
hsl(125, 20%, 55%) | |
hsl(125, 40%, 55%) | |
hsl(125, 60%, 55%) | |
hsl(125, 80%, 55%) | |
hsl(125, 100%, 55%) |
#23f535 Color Usage In CSS
body { color: #23f535; } p { color: rgb(35, 245, 53); } header { border-bottom:1px solid #23f535; }