#98fb09 Color
Color Codes | |
---|---|
Hex Code | #98fb09 |
RGB Code | rgb(152, 251, 09) |
HSL Code | hsl(85, 97%, 51%) |
#98fb09 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(152, 251, 09); }
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(85, 97%, 51%); }
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 #98fb09
RGB Code | Hex Code | Preview |
---|---|---|
rgb(152, 251, 09, 10%) | #98fb091a | |
rgb(152, 251, 09, 20%) | #98fb0933 | |
rgb(152, 251, 09, 40%) | #98fb094C | |
rgb(152, 251, 09, 60%) | #98fb0999 | |
rgb(152, 251, 09, 80%) | #98fb09CC | |
rgb(152, 251, 09, 100%) | #98fb09FF |
Saturated and desaturated colors of #98fb09
HSL Code | Preview |
---|---|
hsl(85, 10%, 51%) | |
hsl(85, 20%, 51%) | |
hsl(85, 40%, 51%) | |
hsl(85, 60%, 51%) | |
hsl(85, 80%, 51%) | |
hsl(85, 100%, 51%) |
#98fb09 Color Usage In CSS
body { color: #98fb09; } p { color: rgb(152, 251, 09); } header { border-bottom:1px solid #98fb09; }